ฉันพบว่าเมื่อเร็ว ๆ นี้เมื่อฉันพยายามติดตั้งแพ็กเกจPythonโดยใช้pipฉันได้รับข้อผิดพลาดด้านล่าง
ฉันพบข้อมูลอ้างอิงออนไลน์ที่มีการใช้ " python2 setup.py install " จากไดเรกทอรีดาวน์โหลดและแน่นอนพบว่าสิ่งนี้จะได้ผลถ้าฉันค้นหาและดาวน์โหลดแพ็คเกจ (จาก pypi) ด้วยตนเอง
แต่ฉันไม่รู้ว่า pip กำลังดาวน์โหลดแพ็คเกจอยู่ที่ไหนและ / หรือทำไมมันจึงล้มเหลวในลักษณะนี้
ฉันพยายามทำการอัพเกรด pip แต่มันก็ล้มเหลวในทำนองเดียวกันโดยมีข้อผิดพลาด "ไม่รู้จักตัวเลือกการแจกจ่าย" (รายการ entry_points, zip_safe, test_suite, tests_require)!
- pip 1.0.1
- ActivePython 2.7
การพยายามใช้ pypm ของ ActiveState ล้มเหลวเนื่องจากมีฐานห้องสมุดที่เล็กกว่าและไม่มีแพ็คเกจเหล่านี้
C:\test>pip install requests-oauth
Downloading/unpacking requests-oauth
Downloading requests-oauth-0.4.1.tar.gz
Running setup.py egg_info for package requests-oauth
E:\Plang\ActivePython\lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'zip_safe'
warnings.warn(msg)
E:\Plang\ActivePython\lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'install_requires'
warnings.warn(msg)
usage: -c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: -c --help [cmd1 cmd2 ...]
or: -c --help-commands
or: -c cmd --help
error: invalid command 'egg_info'
Complete output from command python setup.py egg_info:
E:\Plang\ActivePython\lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'zip_safe'
warnings.warn(msg)
E:\Plang\ActivePython\lib\distutils\dist.py:267: UserWarning: Unknown distribution option: 'install_requires'
warnings.warn(msg)
usage: -c [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: -c --help [cmd1 cmd2 ...]
or: -c --help-commands
or: -c cmd --help
error: invalid command 'egg_info'
python-dev