我想执行下面的命令,但 cygwin 给出了错误。请帮我。
Python makeReadingsFile.py eichstaett.net.xml test.readings.xml
Traceback (most recent call last):
File "makeReadingsFile.py", line 75, in <module>
import argparse
ImportError: No module named argparse
如前所述,错误消息
$ Python makeReadingsFile.py eichstaett.net.xml test.readings.xml
Python: can't open file 'makeReadingsFile.py': [Errno 2] No such file or directory
发生是因为没有这样的文件,你告诉它去寻找一个。您的第二个命令在我看来就像第一个命令一样:
Python makeReadingsFile.py eichstaett.net.xml test.readings.xml
Traceback (most recent call last):
File "makeReadingsFile.py", line 75, in <module>
import argparse
ImportError: No module named argparse
你说这是使用完整的地址路径,但由于给定的路径是相同的,我认为你的意思一定是“当你改变到正确的目录时”。无论如何,这里的错误消息可能是由于您使用的是 Python 2.6 或更早版本: argparse 模块仅在Python 2.7中引入。