Because of changes to pypi
$ pip install winpdb
Installs an 1.3.6, trying to install 1.4.8 results in errors:
$ pip install winpdb==1.4.8
Downloading/unpacking winpdb==1.4.8
Could not find a version that satisfies the requirement winpdb==1.4.8 (from versions: 1.3.6)
Some externally hosted files were ignored (use --allow-external to allow).
Cleaning up...
No distributions matching the version for winpdb==1.4.8
Adding allow-external, the user gets
$ pip install winpdb==1.4.8 --allow-external winpdb
Downloading/unpacking winpdb==1.4.8
Could not find a version that satisfies the requirement winpdb==1.4.8 (from versions: 1.3.6)
Some insecure and unverifiable files were ignored (use --allow-unverified winpdb to allow).
Cleaning up...
Finally - this will install it:
$ pip install winpdb==1.4.8 --allow-external winpdb --allow-unverified winpdb
Downloading/unpacking winpdb==1.4.8
Solution - either host on pypi having done the verfication - this will allow
pip install winpdb to work again, or do the verification but still host
externally (user will need the --allow-external part on the commandline and in
requirements.txt).
Original issue reported on code.google.com by
[email protected]on 9 Jun 2015 at 11:23