I'm trying to use hatch on macOS (High Sierra 10.13.5), and need to use pybin to update my patch to find the installed hatch script, but I can't get pybin to modify my path.
What am I doing wrong?
$ pip3 install --user hatch
$ hatch
-bash: hatch: command not found
$ sudo -H pip3 install pybin
$ pybin
The user bin directory `/Users/brendan/Library/Python/3.7/bin` is not in PATH.
$ echo $PATH
/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
$ pybin put
Success!
$ echo $PATH
/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
$ pybin put -f
Success!
$ echo $PATH
/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
I'm trying to use
hatchon macOS (High Sierra 10.13.5), and need to usepybinto update my patch to find the installedhatchscript, but I can't getpybinto modify my path.What am I doing wrong?