2014-05-03 8 views
5

Es funktionierte vor ein paar Tagen, aber die Schaffung eines neuen vertualenv verursacht heute diesen Fehler.Erstellen neuer virtualenv 1.11.5 fehlgeschlagen mit setuptools Problem

Versuchte Installation von Python-Setuptools getrennt, fehlgeschlagen mit dem gleichen Problem. Es ist auf Mac OS.

mac:django bgbb$ virtualenv vnv 
New python executable in vnv/bin/python 
Installing setuptools, pip... 
Complete output from command /Users/bgbb/Developer/django/vnv/bin/python -c "import sys, pip; sys...d\"] + sys.argv[1:]))" setuptools pip: 
Ignoring indexes: https://pypi.python.org/simple/ 
Downloading/unpacking setuptools 
Cleaning up... 
Exception: 
Traceback (most recent call last): 
File "/Library/Python/2.7/site-packages/virtualenv_support/pip-1.5.5-py2.py3-none-any.whl/pip/basecommand.py", line 122, in main 
    status = self.run(options, args) 
File "/Library/Python/2.7/site-packages/virtualenv_support/pip-1.5.5-py2.py3-none-any.whl/pip/commands/install.py", line 278, in run 
requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle) 
File "/Library/Python/2.7/site-packages/virtualenv_support/pip-1.5.5-py2.py3-none-any.whl/pip/req.py", line 1197, in prepare_files 
do_download, 
File "/Library/Python/2.7/site-packages/virtualenv_support/pip-1.5.5-py2.py3-none-any.whl/pip/req.py", line 1364, in unpack_url 
unpack_file_url(link, location, download_dir) 
File "/Library/Python/2.7/site-packages/virtualenv_support/pip-1.5.5-py2.py3-none-any.whl/pip/download.py", line 640, in unpack_file_url 
unpack_file(from_path, location, content_type, link) 
File "/Library/Python/2.7/site-packages/virtualenv_support/pip-1.5.5-py2.py3-none-any.whl/pip/util.py", line 621, in unpack_file 
unzip_file(filename, location, flatten=not filename.endswith(('.pybundle', '.whl'))) 
File "/Library/Python/2.7/site-packages/virtualenv_support/pip-1.5.5-py2.py3-none-any.whl/pip/util.py", line 491, in unzip_file 
zip = zipfile.ZipFile(zipfp) 
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/zipfile.py", line 766, in __init__ 
self._RealGetContents() 
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/zipfile.py", line 807, in _RealGetContents 
raise BadZipfile, "File is not a zip file" 
BadZipfile: File is not a zip file 

Storing debug log for failure in /Users/bgbb/.pip/pip.log 
---------------------------------------- 
...Installing setuptools, pip...done. 
Traceback (most recent call last): 
File "/usr/local/bin/virtualenv", line 8, in <module> 
    load_entry_point('virtualenv==1.11.5', 'console_scripts', 'virtualenv')() 
File "/Library/Python/2.7/site-packages/virtualenv.py", line 824, in main 
    symlink=options.symlink) 
File "/Library/Python/2.7/site-packages/virtualenv.py", line 992, in create_environment 
    install_wheel(to_install, py_executable, search_dirs) 
File "/Library/Python/2.7/site-packages/virtualenv.py", line 960, in install_wheel 
    'PIP_NO_INDEX': '1' 
File "/Library/Python/2.7/site-packages/virtualenv.py", line 902, in call_subprocess 
    % (cmd_desc, proc.returncode)) 
OSError: Command /Users/bgbb/Developer/django/vnv/bin/python -c "import sys, pip; sys...d\"] + sys.argv[1:]))" setuptools pip failed with error code 2 

Antwort

4

viele Beiträge zu diesem Thema scheint virtualenv 1.10.1 Herabstufung ein fix zu sein.

github venev issue

+1

Per https://bitbucket.org/pypa/setuptools/issue/129/assertionerror-egg-info-pkg-info-is-not-a, pip-1.5.2 und virtualenv-1.11 .2 enthält dieses Update. Hier sind meine Versionen von Pip und virtualenv pip - Version Pip 1.5.4 virtualenv 1.11.5 – Hobaak

+0

Ich war gerade dabei zu fragen, ob Sie hatten, 1.11.5 ist ein Mai-Release, denke ich. –

+0

Installierte 1.11.2 und arbeitete. Der virtualenv 1.11.5 (Release vom 3. Mai) ist wieder deutlich zurückgegangen. – Hobaak