Python项目打包发布Linux线上
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
近期写一个Python系统硬件监控,准备发布到Linux上。
下面一起看看怎么把项目发布到Linux上吧。
环境要求
Python版本:3.7
Windows运行项目
Centos7运行项目
因为centos7的python环境是2.75的。
所以我们首先把Python环境换成3.7的才行。
上面是教程。
(1)打包Python项目的依赖(也就是本地安装的项目依赖)
pip3 freeze > requirements.txt
(2)压缩Python项目和上传到服务器,解压
zip包的解压命令:unzip 包名
(3)cd到项目里,安装依赖
pip3 install -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com -r requirements.txt
(4)运行项目启动文件
python3 manage.py
项目已经运行成功,还有最简便的方法就是运行在docker容器里,更加方便,后续会更新
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献9条内容
所有评论(0)