-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
Description
Doing a pip install --upgrade setuptools
fails in a virtualenv on Python 2.6. I haven't tested any other configurations.
$ python -V
Python 2.6.6
$ virtualenv --no-site-packages test-setuptools
New python executable in test-setuptools/bin/python
Installing Setuptools..............................................................................................................................................................................................................................done.
Installing Pip.....................................................................................................................................................................................................................................................................................................................................done.
$ source test-setuptools/bin/activate
(test-setuptools)$ pip install --upgrade setuptools
Downloading/unpacking setuptools from https://pypi.python.org/packages/b1/d1/3df86b914d72b18d37266f964a11576f135eadbb7d2e3c5165377e4263bc/setuptools-34.0.1.zip#md5=9e907950a94d38c0295df0da2507c280
Downloading setuptools-34.0.1.zip (617kB): 617kB downloaded
Running setup.py egg_info for package setuptools
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "setuptools/__init__.py", line 10, in <module>
from six.moves import filter, map
ImportError: No module named six.moves
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "setuptools/__init__.py", line 10, in <module>
from six.moves import filter, map
ImportError: No module named six.moves
----------------------------------------
Cleaning up...
Command python setup.py egg_info failed with error code 1 in /home/user/test-setuptools/build/setuptools
Storing complete log in /home/user/.pip/pip.log