ImportError: No module named argparse


如果有root權限,可以運行:

easy_install argparse

 

如果沒有root權限,As a simple solution copy argparse.py from https://code.google.com/p/argparse/source/browse/argparse.py to your project folder.

 

REF:

https://pypi.python.org/pypi/argparse

https://code.google.com/p/argparse/source/browse/argparse.py

http://stackoverflow.com/questions/21359400/python-2-6-importerror-no-module-named-argparse

 

As of Python >= 2.7 and >= 3.2, the argparse module is maintained within the Python standard library. For users who still need to support Python < 2.7 or < 3.2, it is also provided as a separate package, which tries to stay compatible with the module in the standard library, but also supports older Python versions.

argparse is licensed under the Python license, for details see LICENSE.txt.

Compatibility

argparse should work on Python >= 2.3, it was tested on:

  • 2.3, 2.4, 2.5, 2.6 and 2.7
  • 3.1, 3.2, 3.3, 3.4

Installation

Try one of these:

python setup.py install

easy_install argparse

pip install argparse

putting argparse.py in some directory listed in sys.path should also work


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM