[issue26191] pip on Windows doesn't honor Case

2016-01-24 Thread Anders Rundgren
Anders Rundgren added the comment: You are right. Pardon me for erring :-( Thanks for the quick response BTW! Anders -- ___ Python tracker ___ _

[issue26191] pip on Windows doesn't honor Case

2016-01-24 Thread Donald Stufft
Donald Stufft added the comment: If you're trying to use PyCrypto then you need to install PyCrypto, crypto is a different package. Try ``pip install PyCrypto``. -- nosy: +dstufft ___ Python tracker __

[issue26191] pip on Windows doesn't honor Case

2016-01-24 Thread SilentGhost
SilentGhost added the comment: Assuming that you're talking about https://pypi.python.org/pypi/crypto/ - it is unfortunate that pip is so lax with capitalisation rules when installing a package, but as far as I can see there isn't a "Crypto" package anywhere and you're never encouraged to use

[issue26191] pip on Windows doesn't honor Case

2016-01-24 Thread Anders Rundgren
New submission from Anders Rundgren: pip install Crypto Terminates correctly and the package is there as well. Unfortunately the directory is named "crypto" rather than "Crypto" so when I perform >>>import Crypto the interpreter fails. >>>import crypto seems to work but is incompatible ove