PythonAnywhere 部署Flask项目
一、 注册账号
官网:https://www.pythonanywhere.com/
二、 将GitHub上的项目发送至PythonAnywhere
三、配置环境及运行
git clone https://github.com/chao-yuan-cy/flask.git
创建虚拟环境
virtualenv --python=python3.7 Flask_env
**虚拟环境
source Flask_env/bin/activate
下载依赖
pip install -r requirements.txt






@原文出处:https://www.freesion.com/article/9465449803/