मुझे लगता है कि हाल ही में अक्सर जब मैं पाइप का उपयोग करके पायथन पैकेज स्थापित करने की कोशिश करता हूं, तो मुझे नीचे त्रुटि मिलती है।
मुझे ऑनलाइन एक संदर्भ मिला कि एक को डाउनलोड निर्देशिका से " python2 setup.py स्थापित " का उपयोग करना होगा , और वास्तव में पता चलता है कि यह तब काम करेगा जब मैं मैन्युअल रूप से पैकेज ढूंढता हूं और (pypi से) डाउनलोड करता हूं।
लेकिन, मुझे नहीं पता कि पाइप किस पैकेज को डाउनलोड कर रहा है, और / या वह इस तरीके से विफल क्यों हो रहा है।
मैंने एक पाइप अपग्रेड करने की कोशिश की, लेकिन "अज्ञात वितरण विकल्प" त्रुटियों (प्रविष्टि_ पॉइंट, zip_safe, test_suite, test_require) के एक गुच्छा के साथ यह भी इसी तरह से विफल रहा!
- पाइप। 1.0.1
- ActivePython 2.7
ActiveState के pypm का उपयोग करने का प्रयास विफल रहता है, क्योंकि उनके पास एक छोटा पुस्तकालय आधार है, और इसमें ये पैकेज शामिल नहीं हैं।
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