How to find gunicorn path in Ubuntu using terminal?

Viewed 8583

I have installed gunicorn in my Ubuntu virtual machine using sudo apt-get install gunicorn. How can I find the installed location of gunicorn?

2 Answers

Sorry for posting late. Might still be helpful for others.

Try this-

whereis gunicorn

How you checked it is not available in location /home/jkcsadmin/.local/bin/gunicorn ? Try /home/jkcsadmin/.local/bin/gunicorn -h and see whether it shows the help.

Normally it is located at your bin folder /usr/bin/gunicorn. Try /usr/bin/gunicorn -h

Related