Skip to content Skip to sidebar Skip to footer

Stem Not Recognizing Tor's Path

While running Stem's To Russia With Love example, I got the following error: 'tor' isn't available on your system. Maybe it's not in your PATH To solve this, I added the followin

Solution 1:

The ~ character is a Bash shell feature that expands to the value of the environment variable $HOME. It doesn't work in Python or other programming languages.

Instead, specify the the full path to Tor, or create a link to it somewhere in the $PATH Python is using in that case.

Post a Comment for "Stem Not Recognizing Tor's Path"