after creating a new virtualenv and installing pyramid via easy_install, I simply call `pcreate` and I get this error: pkg_resources.DistributionNotFound: pyramid==1.5a2
any ideas why? Python 2.7.3 Log follows: [michael@varga (Tue Apr 15 23:47:39) ~/src/py]% virtualenv test_env New python executable in test_env/bin/python Installing Setuptools...................................................................................................................................................................................................................................done. Installing Pip.............................................................c.............................................................d...........................................................................................................................................................................................................done. [michael@varga (Tue Apr 15 23:47:52) ~/src/py]% cd test_env [michael@varga (Tue Apr 15 23:47:55) ~/src/py/test_env]% source bin/activate (test_env)[michael@varga (Tue Apr 15 23:48:25) ~/src/py/test_env]% easy_install pyramid Searching for pyramid Reading http://pypi.python.org/simple/pyramid/ Best match: pyramid 1.5 Downloading https://pypi.python.org/packages/source/p/pyramid/pyramid-1.5.tar.gz#md5=8747658dcbab709a9c491e43d3b0d58b Processing pyramid-1.5.tar.gz Writing /var/folders/dl/fxytxtf15zgc51n2rffrbdgh0000gn/T/easy_install-dm5Nqn/pyramid-1.5/setup.cfg Running pyramid-1.5/setup.py -q bdist_egg --dist-dir /var/folders/dl/fxytxtf15zgc51n2rffrbdgh0000gn/T/easy_install-dm5Nqn/pyramid-1.5/egg-dist-tmp-2Wf3FA Adding pyramid 1.5 to easy-install.pth file Installing ptweens script to /Users/michael/src/py/test_env/bin Installing pdistreport script to /Users/michael/src/py/test_env/bin Installing proutes script to /Users/michael/src/py/test_env/bin Installing pshell script to /Users/michael/src/py/test_env/bin Installing prequest script to /Users/michael/src/py/test_env/bin Installing pviews script to /Users/michael/src/py/test_env/bin Installing pcreate script to /Users/michael/src/py/test_env/bin Installing pserve script to /Users/michael/src/py/test_env/bin Installed /Users/michael/src/py/test_env/lib/python2.7/site-packages/pyramid-1.5-py2.7.egg Processing dependencies for pyramid Searching for WebOb>=1.3.1 Reading http://pypi.python.org/simple/WebOb/ Best match: WebOb 1.3.1 Downloading https://pypi.python.org/packages/source/W/WebOb/WebOb-1.3.1.tar.gz#md5=20918251c5726956ba8fef22d1556177 Processing WebOb-1.3.1.tar.gz Writing /var/folders/dl/fxytxtf15zgc51n2rffrbdgh0000gn/T/easy_install-g29cdj/WebOb-1.3.1/setup.cfg Running WebOb-1.3.1/setup.py -q bdist_egg --dist-dir /var/folders/dl/fxytxtf15zgc51n2rffrbdgh0000gn/T/easy_install-g29cdj/WebOb-1.3.1/egg-dist-tmp-bDdp4t no previously-included directories found matching '*.pyc' no previously-included directories found matching '*.pyo' Adding WebOb 1.3.1 to easy-install.pth file Installed /Users/michael/src/py/test_env/lib/python2.7/site-packages/WebOb-1.3.1-py2.7.egg Finished processing dependencies for pyramid (test_env)[michael@varga (Tue Apr 15 23:48:43) ~/src/py/test_env]% pcreate Traceback (most recent call last): File "/usr/local/bin/pcreate", line 5, in <module> from pkg_resources import load_entry_point File "build/bdist.macosx-10.8-intel/egg/pkg_resources.py", line 2749, in <module> dirname = os.path.dirname(path) File "build/bdist.macosx-10.8-intel/egg/pkg_resources.py", line 444, in _build_master (This is because ``sys.path`` can contain the same value more than File "build/bdist.macosx-10.8-intel/egg/pkg_resources.py", line 725, in require """Searchable snapshot of distributions on a search path""" File "build/bdist.macosx-10.8-intel/egg/pkg_resources.py", line 628, in resolve unloadable plugin distributions to an exception instance describing the pkg_resources.DistributionNotFound: pyramid==1.5a2 -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pylons-discuss. For more options, visit https://groups.google.com/d/optout.
