在Python3上扭曲:安装失败了一系列" File Not Found"错误

时间:2015-07-18 01:37:50

标签: python python-3.x twisted

我遇到了这里描述的问题:

https://twistedmatrix.com/trac/ticket/6539#comment:12

然而,故障单已经关闭,每个人似乎都认为Twisted的一大部分现在可以在Python 3上运行。

当我使用Python 3安装Twisted时,会发出故障单上列出的错误,然后我会遇到以下情况:

In [1]: import twisted

In [2]: dir(twisted)
Out[2]: 
['Version',
 '__builtins__',
 '__cached__',
 '__class__',
 '__delattr__',
 '__dict__',
 '__dir__',
 '__doc__',
 '__eq__',
 '__file__',
 '__format__',
 '__ge__',
 '__getattribute__',
 '__gt__',
 '__hash__',
 '__init__',
 '__le__',
 '__loader__',
 '__lt__',
 '__name__',
 '__ne__',
 '__new__',
 '__package__',
 '__path__',
 '__reduce__',
 '__reduce_ex__',
 '__repr__',
 '__setattr__',
 '__sizeof__',
 '__spec__',
 '__str__',
 '__subclasshook__',
 '__version__',
 '_checkRequirements',
 '_version',
 'deprecatedModuleAttribute',
 'python',
 'version']

In [3]: from twisted import scripts
---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
 in ()
----> 1 from twisted import scripts

ImportError: cannot import name 'scripts'

我做错了什么?

1 个答案:

答案 0 :(得分:1)

twisted.scripts模块尚未移植。您可以查看已移植 的所有内容的完整列表heretwisted.scripts.twistd is an "almostModule",这意味着它非常接近;这将是一个尝试开始移植的好地方。