在 windows 上将 TOR 与 python 一起使用 - 找不到安装程序
Using TOR with python on windows - Cannot find installer
我正在尝试学习如何将 Python 与 TOR 结合使用。但是,我无法在任何地方找到 windows 的 TOR 客户端(相当于 linux 上的 "apt-get install tor" 或 android 上的 ORbot)。
我只找到了 TOR 浏览器,我已经拥有并在使用它。我正在使用带 Python 的 stem 连接到 TOR,但由于我没有安装任何东西,它失败了:
Traceback (most recent call last):
File "C:/Users/8bitb/Desktop/Python Stuff/tor.py", line 19, in <module>
init_msg_handler=print_bootstrap_lines,
File "C:\Python36\lib\site-packages\stem\process.py", line 273, in launch_tor_with_config
return launch_tor(tor_cmd, args, torrc_path, completion_percent, init_msg_handler, timeout, take_ownership)
File "C:\Python36\lib\site-packages\stem\process.py", line 86, in launch_tor
raise OSError("'%s' isn't available on your system. Maybe it's not in your PATH?" % tor_cmd)
OSError: 'tor' isn't available on your system. Maybe it's not in your PATH?
我在任何地方都找不到简单的安装。我希望我遗漏了一些明显的东西。请有人纠正我的愚蠢。
只需像往常一样下载 torbrowser,它内置了 Tor 网络。如果您确实需要配置选项,可以获取专家包。
然后您需要将 tor 命令行可执行文件(无论您用来安装 torbrowser 的目录)添加到您的 windows 路径,这样您就可以调用 tor?
See here
或者,启动后直接通过 tor 代理?
我正在尝试学习如何将 Python 与 TOR 结合使用。但是,我无法在任何地方找到 windows 的 TOR 客户端(相当于 linux 上的 "apt-get install tor" 或 android 上的 ORbot)。
我只找到了 TOR 浏览器,我已经拥有并在使用它。我正在使用带 Python 的 stem 连接到 TOR,但由于我没有安装任何东西,它失败了:
Traceback (most recent call last):
File "C:/Users/8bitb/Desktop/Python Stuff/tor.py", line 19, in <module>
init_msg_handler=print_bootstrap_lines,
File "C:\Python36\lib\site-packages\stem\process.py", line 273, in launch_tor_with_config
return launch_tor(tor_cmd, args, torrc_path, completion_percent, init_msg_handler, timeout, take_ownership)
File "C:\Python36\lib\site-packages\stem\process.py", line 86, in launch_tor
raise OSError("'%s' isn't available on your system. Maybe it's not in your PATH?" % tor_cmd)
OSError: 'tor' isn't available on your system. Maybe it's not in your PATH?
我在任何地方都找不到简单的安装。我希望我遗漏了一些明显的东西。请有人纠正我的愚蠢。
只需像往常一样下载 torbrowser,它内置了 Tor 网络。如果您确实需要配置选项,可以获取专家包。
然后您需要将 tor 命令行可执行文件(无论您用来安装 torbrowser 的目录)添加到您的 windows 路径,这样您就可以调用 tor?
See here
或者,启动后直接通过 tor 代理?