uWSGI command not found
Thanks to a comment by [@dirkgroten]. To install UWSGI :
pip install uwsgi
After running pip install uwsgi
, it's possible that uwsgi
was installed someplace not on your PATH
. IE, in my case, it got installed to:
/usr/local/opt/python-3.8.6/bin/uwsgi
I was able to fix this by adding a symlink:
sudo ln -s /usr/local/opt/python-3.8.6/bin/uwsgi /usr/bin/uwsgi
(This may be a terrible idea. It may be a much better idea to use a venv
, but I'm following a tutorial that specifically told me to avoid using a venv
.)