FS#27206 - [python2] Error: invalid command 'egg_info'
Attached to Project:
Arch Linux
Opened by Martin Putniorz (sputnikus) - Monday, 21 November 2011, 14:07 GMT
Last edited by Stéphane Gaudreault (stephane) - Wednesday, 23 November 2011, 15:05 GMT
Opened by Martin Putniorz (sputnikus) - Monday, 21 November 2011, 14:07 GMT
Last edited by Stéphane Gaudreault (stephane) - Wednesday, 23 November 2011, 15:05 GMT
|
Details
Description:
Python cannot execute egg_info command while installing the package. That prevents the installation of packages using pip. Additional info: * python2 2.7.2-2 * python2-distribute 0.6.24-1 * python2-pip 1.0.2-1 Steps to reproduce: 1) python setup.py egg_info |
This task depends upon
Closed by Stéphane Gaudreault (stephane)
Wednesday, 23 November 2011, 15:05 GMT
Reason for closing: Works for me
Wednesday, 23 November 2011, 15:05 GMT
Reason for closing: Works for me
python2 setup.py egg_info
not
python setup.py egg_info
Here executing egg_info on a few packages works. What are you trying to do exactly ?
Right ?
Looks like it works for me :
# cd /tmp/requests-0.8.2
# python2 setup.py egg_info
running egg_info
writing requests.egg-info/PKG-INFO
writing top-level names to requests.egg-info/top_level.txt
writing dependency_links to requests.egg-info/dependency_links.txt
reading manifest file 'requests.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'requests.egg-info/SOURCES.txt'
But if I try to do install packages in virtualenv using pip, it works.