我正在和另外两个人一起做一个 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。