我是干的新手(python中的Tor框架)。我有安装python27的64位Windows和干燥库和Tor浏览器。 当我想开始我的第一个代码时如下:
import sys
from stem.connection import connect
if __name__ == '__main__':
controller = connect()
if not controller:
sys.exit(1) # unable to get a connection
print 'Tor is running version %s' % controller.get_version()
controller.close()
答案 0 :(得分:0)
您需要安装Tor而不仅仅是Tor浏览器。我不确定Windows是否可行,我从来没有这样做过。我已经在Ubuntu机器上进行了设置,这非常简单。 https://tor.stackexchange.com/questions/3534/setting-up-tor-for-use-with-stem这篇文章对您有用,这对https://www.torproject.org/docs/debian.html.en
也很有用