ImportError: No module named argparse

2019-04-03 09:02发布

I am trying to run a Python program but get the error

ImportError: No module named argparse

I found the question “argparse Python modules in cli” here on StackOverflow and tried the first comment, i.e. running the command

python -c "import argparse; print argparse"

which resulted in

<module 'argparse' from '/usr/lib/python2.7/argparse.pyc'>

For me it seems like there is Python 2.7 installed on the machine (of which I am not administrator) and the argparse module is present as well. So I wonder why the module is not found. On another machine the script runs as it should. In the post referred to above, there is the comment that maybe sys.path is broken. I have no clue what that means, or how I can change its value. Any ideas?

7条回答
We Are One
2楼-- · 2019-04-03 09:40

Try installing argparse:

easy_install argparse
查看更多
地球回转人心会变
3楼-- · 2019-04-03 09:40

You're probably using a different version of Python with your script than the one you execute in command line. Make sure that the script is using this interpretor: /usr/lib/python2.7. This installation has argparse for sure, as you proved it with the import on your first post.

Why your script can use a different Python installation? It can be the result of a Shebang line of the first line of your script that could pointed to a different Python interpretor which doesn't have the argparse module installed.

EDIT: Another problem can be that your script clean the sys.path list, and it would be very bad because every modules pre-installed wouldn't be accessible...

查看更多
我命由我不由天
4楼-- · 2019-04-03 09:41

You don't have the module installed to the correct version of python.There is one of two ways you can fix this

  1. Reinstall python and the module
  2. Change python paths are demonstrated at one of these links (osx, windows(You shouldn't have to do this on windows I selected xp because that is what I run),linux

One of these should work but if it doesn't try rebooting. GOOD LUCK!! :)

查看更多
孤傲高冷的网名
5楼-- · 2019-04-03 09:49

Run this command: yum install -y python-argparse. It can fix it when you are CentOS.

查看更多
不美不萌又怎样
6楼-- · 2019-04-03 09:50

On CentOS I solved this with yum install python-argparse. HT to LVA for the correct package name.

查看更多
别忘想泡老子
7楼-- · 2019-04-03 09:51

If your source file has the same name with argparse, and you put it in the current directory with your scripts, you may encountered the problem.

查看更多
登录 后发表回答