我正试图将一个。onion网站的内容转换为python,有一点研究表明'stem'当我运行这个教程脚本时,或者更具体地说,当我试图使用stem.process时。launch_tor_with_config,我得到这个错误:
"tor"在您的系统中不可用。也许它不在你的路径中?
我应该安装了某种tor进程,我得到了tor浏览器包,并把/tor库(带有tor.exe)放在我的路径中,它没有帮助…显然我错过了一些非常基本的,请建议....
多谢…
我在Mac上也有同样的问题。尝试指定tor文件位于tor_cmd参数的确切位置:
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,
)