Flask运行环境部署

安装 gunicorn

CentOS 部署 flask项目

Flask生产环境部署

运行gunicorn无法执行,报错,安装依赖库

# CenOS系统下的命令
yum install mysql-devel gcc gcc-devel python-devel

https://docs.gunicorn.org/en/stable/run.html

web应用

#Shell 中设置python的 source root (类似于pycharm中的source root)
#设置PYTHONPATH即可:
export PYTHONPATH="${PYTHONPATH}:/your/source/root"

其实通过代码里设定sys.path.append,把项目执行根路径加进去即可。

你可能感兴趣的:(Linux,python)