I've went through every single tutorial on the internet, all of them suggest:
pip install uwsgi
But after that, I keep getting:
bash: uwsgi: command not found
I have tried installing it directly:
yum -y install uwsgi
Tried via pip & pip3.8
pip install uwsgi
pip3.8 install uwsgi
Tried within Virtual env:
source venv/bin/activate
(venv) [root@ MyAPI]# pip3.8 install uwsgi
After all those installations, I get Successfully installed uwsgi
, but typing uwsgi
or uwsgi --version
still returns command not found.
Even tried: find / -name uwsgi
but it didn't work either! find: â??/proc/12065â??: No such file or directory
I'm giving up...