0

当我尝试使用 python 中的扭曲时,它无法加载。附加路径不在我的 sys.path 中。即使我将它添加到 sys.path 它也无法加载扭曲。有任何想法吗?

sudo find / -name twisted
/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/twisted
/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted

Python 2.6.6 (r266:84374, Aug 31 2010, 11:00:51) 
[GCC 4.0.1 (Apple Inc. build 5493)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from twisted.internet.protocol import Factory
Traceback (most recent call last):
  File "test.py", line 1, in <module>
    from twisted.internet.protocol import Factory
ImportError: No module named twisted.internet.protocol
4

1 回答 1

1

您是否确保所有权限都已正确设置?如果您手动安装它,则可能是权限问题。检查文件的权限是否为 644,目录的权限为 755。

于 2012-12-08T18:46:48.130 回答