Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 ubuntu 12.04 64 位,并且我已经在其中安装了 p4python。我尝试导入 p4 模块,但它给了我以下错误
import p4 Traceback(最近一次调用最后一次):文件“”,第 1 行,在 ImportError:没有名为 p4 的模块
有人可以帮帮我吗??
你能试一下吗
import P4
模块已重命名
新模块名称
The P4Python module has been renamed from p4 to P4. For example: Old: >>> import p4 >>> p4c = p4.P4() New: >>> import P4 >>> p4 = P4.P4()