zsh: command not found: nts
mattwl opened this issue · 2 comments
Hello
I'm a little noob to Python, but struggling to get this to work
Looks like I successfully installed on MacOSX terminal using pip3 install
I can now see NTS-everdrone (and depdencies) when I go to pip3 list
However, if I try run nts, as per instructions, I get the following error
matt@Matts-MBP ~ % nts -h
zsh: command not found: nts
I am running pip 21.2.4 from /Library/Developer/CommandLineTools/Library/Frameworks/Python3.framework/Versions/3.9/lib/python3.9/site-packages/pip (python 3.9) on my mac
Hi, sorry for the late response.
I've just been able to test this with python 3.9 on a macbook.
The issue seems to be related to a missing element in your PATH
environment variable, specifically the location where pip3
install packages.
You should find out where pip3
installs your packages, then add that directory to your environment variable inside your .zshrc
thanks! this seems to be the issue, correct