Linux运行python文件

1、本地运行pip freeze > requirements.txt
生成所需要的模块清单

2、项目打成zip包上传到Linux服务器

3、在Linux运行 unzip 包名 进行解压

4、运行 pip3 install -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com -r requirements.txt 命令在Linux安装需要的模块

5、python3 xx.py 运行
如果想后台运行,nohup python3 xx.py &

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