For future reference, this means your PATH is not set correctly.
Refer to this: https://stackoverflow.com/questions/46973667/python-console-scripts-doesnt-work-when-pip-install-user for more details.
If ~/.local/bin is not on your path, then do this in your .profile or something that gets loaded by your shell:
export PATH=~/.local/bin:$PATH
On a Mac, depending on your Python install, that folder may not exist. Instead the bin folder may sometimes be found here ~/Library/Python/3.7/bin.
Most helpful comment
For future reference, this means your PATH is not set correctly.
Refer to this: https://stackoverflow.com/questions/46973667/python-console-scripts-doesnt-work-when-pip-install-user for more details.
If
~/.local/binis not on your path, then do this in your.profileor something that gets loaded by your shell:export PATH=~/.local/bin:$PATHOn a Mac, depending on your Python install, that folder may not exist. Instead the bin folder may sometimes be found here
~/Library/Python/3.7/bin.