我已下载最新的tor-nodes.py
和最新的pytorctl
。
我已经使用Python pytorctl
然后setup.py build
安装了python setup.py install
;
那里没有错误。
但现在当我运行./tor-nodes.py
时出现错误:
# ./tor-nodes.py
Traceback (most recent call last):
File "./tor-nodes.py", line 11, in <module>
conn = TorCtl.connect()
AttributeError: 'module' object has no attribute 'connect'
任何帮助将不胜感激
答案 0 :(得分:2)
这很可能是您的import语句的问题。如果你有......
import TorCtl
...然后尝试用...替换它。
from TorCtl import TorCtl
所有这些说,你可能想看看Stem。 TorCtl deprecated in December, 2012支持Stem。
干杯! -Damian