why gunicorn command not found with gunicorn installed?

前端 未结 6 1008
执念已碎
执念已碎 2021-02-19 03:19

I have intalled gunicorn,but gunicorn command not found:

# pip3.4 install gunicorn
Requirement already satisfied (use --upgrade to upgrade): gunicorn in /usr/loc         


        
6条回答
  •  情话喂你
    2021-02-19 04:11

    If you installed python3 from source compiled, you should export your python3 PATH:

    export PATH=$PATH:/usr/local/python3/bin
    

提交回复
热议问题