我正和另外两个人一起开展python项目,但我无法运行测试。当我使用python3 -m unittest
运行测试时,我得到了这个输出
Traceback (most recent call last):
Traceback (most recent call last):
File "Peer.py", line 1, in <module>
File "Peer.py", line 1, in <module>
from xmlrpc.client import ServerProxy
from xmlrpc.client import ServerProxy
ImportError: No module named xmlrpc.client
ImportError: No module named xmlrpc.client
Peer.py中的第1行是
from xmlrpc.client import ServerProxy
奇怪的是,当我独立运行Peer.py(python3 Peer.py
)时,没有任何问题。它也像贝壳中的魅力一样
Python 3.3.1 (v3.3.1:d9893d13c628, Apr 6 2013, 11:07:11)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import xmlrpc.client
>>>
与我合作的2个人没有任何问题,我们从版本控制运行相同的代码。我在OS X和Ubuntu上都遇到了同样的错误,而他们运行的是Windows。