command not found gunicorn 是什么原因
这个错误通常是因为系统中没有安装 gunicorn 或者没有将 gunicorn 添加到 PATH 环境变量中。可以尝试使用以下命令安装 gunicorn:
pip install gunicorn
如果已经安装了 gunicorn,可以尝试将其添加到 PATH 环境变量中,例如:
export PATH=$PATH:/path/to/gunicorn
或者在运行 gunicorn 命令时指定其完整路径,例如:
/path/to/gunicorn app:app
原文地址: https://www.cveoy.top/t/topic/5Kv 著作权归作者所有。请勿转载和采集!