I am trying to install Exscript from github.
pip install -e 'git+git://github.com/knipknap/exscript.git#egg=Exscript'
...
Successfully installed Exscript
Cleaning up..
When i try to load it, python is not able to find it:
python2.7 -c "import Exscript"
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named Exscript
But, when i try to install it in the same virtualenv with setup.py it installs and loads successfully.
What am i doing wrong?
site.packages
folder if it is installed there? – Alikesrc
folder in the current directory. As far as I can see, pip is failing to install the package insite-packages
and just leaving an egg link over there. Strange... – Bussard