Closed ulken closed 3 years ago
pip should put both ph
and passhole
in your PATH. You should be able to execute those commands directly.
pip should put both
ph
andpasshole
in your PATH. You should be able to execute those commands directly.
Oh, wow. So it overwrites the bins installed from the registry? Interesting.
Oh, wow. So it overwrites the bins installed from the registry? Interesting.
You mean the system binaries in /usr/local? Yes its possible that pip can overwrite them with sudo. That's why its recommended to generally use --user
when installing with pip or use a virtualenv.
Alright, cool. Thanks!
I simply replaced all occurrences of
sys.exit()
withsys.exit(1)
. I went through all of them before committing and found it reasonable. All explicit exits (in contrast to when normal execution of the program is done) indicate something unexpected has happened.I wasn't able to actually run the program. How do I do that? I tried running the main Python file but it complains about relative import of
version
in a non-package. Tried using-m
and specifying the package/module name but never found the right combo.Closes #41