-
Notifications
You must be signed in to change notification settings - Fork 65
Closed
Description
@dlonie @jbeezley @aashish24 this is why I dislike pip sooo much.
Behind our firewall we can't get pip tarballs (https) so I went and downloaded the tarball manually, now while installing I get:
> pip install ~/Downloads/flake8-2.4.1.tar.gz
Unpacking /home/doutriaux1/Downloads/flake8-2.4.1.tar.gz
Running setup.py egg_info for package from file:///home/doutriaux1/Downloads/flake8-2.4.1.tar.gz
Downloading/unpacking pyflakes<0.9,>=0.8.1 (from flake8==2.4.1)
Cannot fetch index base URL http://pypi.python.org/simple/
Could not find any downloads that satisfy the requirement pyflakes<0.9,>=0.8.1 (from flake8==2.4.1)
No distributions at all found for pyflakes<0.9,>=0.8.1 (from flake8==2.4.1)
Storing complete log in /home/doutriaux1/.pip/pip.log
And down the rabbit hole we go.... Plus this is NOT the latest pyflakes that they want...
Ok so I install pyflake 0.8.1 (not 0.9.2)
back to installing flake8:
> pip install ~/Downloads/flake8-2.4.1.tar.gz
Unpacking /home/doutriaux1/Downloads/flake8-2.4.1.tar.gz
Running setup.py egg_info for package from file:///home/doutriaux1/Downloads/flake8-2.4.1.tar.gz
Requirement already satisfied (use --upgrade to upgrade): pyflakes<0.9,>=0.8.1 in ./install/lib/python2.7/site-packages (from flake8==2.4.1)
Downloading/unpacking pep8!=1.6.0,!=1.6.1,!=1.6.2,>=1.5.7 (from flake8==2.4.1)
Cannot fetch index base URL http://pypi.python.org/simple/
Could not find any downloads that satisfy the requirement pep8!=1.6.0,!=1.6.1,!=1.6.2,>=1.5.7 (from flake8==2.4.1)
No distributions at all found for pep8!=1.6.0,!=1.6.1,!=1.6.2,>=1.5.7 (from flake8==2.4.1)
Storing complete log in /home/doutriaux1/.pip/pip.log
AGAIN NOT the latest version... fine pep8 is now installed... trying AGAIN flake8
pip install ~/Downloads/flake8-2.4.1.tar.gz
Unpacking /home/doutriaux1/Downloads/flake8-2.4.1.tar.gz
Running setup.py egg_info for package from file:///home/doutriaux1/Downloads/flake8-2.4.1.tar.gz
Requirement already satisfied (use --upgrade to upgrade): pyflakes<0.9,>=0.8.1 in ./install/lib/python2.7/site-packages (from flake8==2.4.1)
Requirement already satisfied (use --upgrade to upgrade): pep8!=1.6.0,!=1.6.1,!=1.6.2,>=1.5.7 in ./install/lib/python2.7/site-packages (from flake8==2.4.1)
Downloading/unpacking mccabe<0.4,>=0.2.1 (from flake8==2.4.1)
Cannot fetch index base URL http://pypi.python.org/simple/
Could not find any downloads that satisfy the requirement mccabe<0.4,>=0.2.1 (from flake8==2.4.1)
No distributions at all found for mccabe<0.4,>=0.2.1 (from flake8==2.4.1)
Storing complete log in /home/doutriaux1/.pip/pip.log
And finally
pip install ~/Downloads/flake8-2.4.1.tar.gz
Unpacking /home/doutriaux1/Downloads/flake8-2.4.1.tar.gz
Running setup.py egg_info for package from file:///home/doutriaux1/Downloads/flake8-2.4.1.tar.gz
Requirement already satisfied (use --upgrade to upgrade): pyflakes<0.9,>=0.8.1 in ./install/lib/python2.7/site-packages (from flake8==2.4.1)
Requirement already satisfied (use --upgrade to upgrade): pep8!=1.6.0,!=1.6.1,!=1.6.2,>=1.5.7 in ./install/lib/python2.7/site-packages (from flake8==2.4.1)
Requirement already satisfied (use --upgrade to upgrade): mccabe<0.4,>=0.2.1 in ./install/lib/python2.7/site-packages (from flake8==2.4.1)
Installing collected packages: flake8
Running setup.py install for flake8
Installing flake8 script to /home/doutriaux1/build_setuptools/install/bin
Successfully installed flake8
Cleaning up...
Yeah!
Reactions are currently unavailable