我在2台PC上的两个相同的Python项目下运行相同的命令
python ./main -xls nd.xls -xml nd.xml -t 1234
PC A:效果很好 PC B抛出异常
Traceback (most recent call last):
File "./main", line 21, in <module>
from color_print import *
ImportError: No module named color_print
from color_print import *
from debug_tool import *
两个python版本都是2.7
我只是好奇为什么在PC A上工作而在PC B上失败。
我必须犯错误。
.
├── common
│ ├── Common
│ │ ├── __init__.py
│ │ ├── color_print.py
│ │ └── debug_tool.py
│ ├── Excel
│ │ ├── Xls.pyc
│ │ ├── XlsOperation.py
│ │ ├── XlsOperation.pyc
│ │ ├── __init__.py
│ │ └── __init__.pyc
│ ├── README.md
│ ├── __init__.py
│ ├── __init__.pyc
│ └── tmpl.py
├── main
├── nd.xls
├── nd.xml
├── nd_excel.py
├── nd_excel.pyc
├── nd_xml.py
├── nd_xml.pyc
└── origin_nd.xls