I'm using Paramiko (which depends on PyCrypto) on Windows in a virtual environment.
Because I'm on Windows, I don't have a C compiler by default, so I got the windows executable from XXX, and installed it using:
workon myenv
easy_install pycrypto-2.6.win32-py2.7.exe
python myscript.py
And everything worked for me.
Now my colleague (Steve) would like to use the same program, so he does:
workon myenv
python myscript.py
and it fails with "ImportError: no module named Crypto". Which is odd. What is odder is that if Steve easy_installs the PyCrypto module, he can use it, but I can't. The library only seems to work for the person who installed it.
Any idea what I'm missing?