Tôi thấy rằng gần đây thường khi tôi cố gắng cài đặt gói Python bằng pip , tôi gặp lỗi bên dưới.
Tôi đã tìm thấy một tài liệu tham khảo trực tuyến rằng người ta phải sử dụng " python2 setup.py install " từ thư mục tải xuống và thực sự thấy rằng nó sẽ hoạt động nếu tôi tự tìm và tải xuống gói (từ pypi).
Nhưng, tôi không biết pip đang tải các gói đến đâu và / hoặc tại sao nó lại thất bại theo cách này.
Tôi đã thử thực hiện nâng cấp pip, nhưng nó cũng thất bại theo cách tương tự, với một loạt lỗi "Tùy chọn phân phối không xác định" (entry_point, zip_safe, test_suite, tests_Vquire)!
- Pip 1.0.1
- ActivePython 2.7
Cố gắng sử dụng pypm của ActiveState không thành công, vì chúng có cơ sở thư viện nhỏ hơn và không bao gồm các gói này.
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