How can I get argparse in Python 2.6?

Question:

I have some Python 2.7 code written that uses the argparse module. Now I need to run it on a Python 2.6 machine and it won’t work since argparse was added in 2.7.

Is there anyway I can get argparse in 2.6? I would like to avoid rewriting the code, since I will be transferring this kind of code between the machines often. Upgrading python is not an option.

I should have clarified that the ideal solution would be something that does not require module installation.

Asked By: Bitwise

||

Answers:

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

Answered By: Randall Hunt

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

yum install python-argparse
Answered By: user3517231

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.

Answered By: Jack James

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

apt-get install python-argparse
Answered By: Houssam Hammoudi

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

Answered By: Phil
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.