How can I get argparse in Python 2.6?

送分小仙女□ 提交于 2019-11-28 10:39:54

You can install it via pip or easy_install: https://pypi.python.org/pypi/argparse

user3517231

On Centos, Scientific, or Redhat, you can fix this by running the command:for

yum install python-argparse

you can also get the argparse.py file (e.g. from https://pypi.python.org/pypi/argparse) and put it in the same folder as your main python file.

Houssam Hammoudi

If you are on Debian-like systems, you may simply write this:

apt-get install python-argparse

When I had this need I just installed argparse using pip: pip install argparse. This worked fine for the python-2.6.6-66.el6_8.x86_64 that was installed on my vanilla CentOS 6.8 system. I later found out that this did not work on other systems running python-2.6.6-52.el6.x86_64. As a result I ended up copying argparse related files from one system to the other.

i.e. all files and directories beginning with argparse in /usr/lib/python2.6/site-packages

Only after doing all this did I discover that I could have simply installed the python argparse rpm python-argparse that comes with both distributions.

i.e. yum install python-argparse

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!