5

我正在尝试将 .onion 网站的内容获取到 python,一项小研究表明“ stem ”,当我运行本教程脚本时,或者更具体地说,当我尝试使用stem.process.launch_tor_with_config时,我得到了这个错误:

'tor' 在您的系统上不可用。也许它不在你的路径中?

我应该安装某种tor进程,我得到了tor浏览器包并将/ Tor库(带有tor.exe)放在我的路径中,它没有帮助......显然我错过了一些非常基本的,请指教....

非常感谢...

4

1 回答 1

5

我在我的 Mac 上遇到了同样的问题。尝试在 tor_cmd 参数中准确指定 tor 文件的位置:

tor_process = stem.process.launch_tor_with_config(
    tor_cmd = '/Applications/TorBrowser.app/Tor/tor.real',
    config = { SocksPort': str(SOCKS_PORT),
               'ExitNodes': '{ru}',},
    init_msg_handler = print_bootstrap_lines,
)
于 2014-07-31T21:12:19.097 回答