打包编译python脚本
Posted 風£飛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了打包编译python脚本相关的知识,希望对你有一定的参考价值。
生成requirements.txt依赖包文件
pip freeze > requirements.txt
安装requirements.txt依赖
pip install -r requirements.txt
安装
pip install pyinstaller
打包编译(打包之前请安装requirements.txt文件里的所有依赖包)
pyinstaller -F deploy.py --add-data \'config.yaml:.\'
打包添加配置文件时,在windows上使用--add-data \'config.yaml;.\',在Linux上使用--add-data \'config.yaml:.\'
参考链接
https://www.cnblogs.com/mywolrd/p/4756005.html
https://www.cnblogs.com/caijunchao/p/12845620.html
https://www.cnblogs.com/gopythoner/p/6337543.html
以上是关于打包编译python脚本的主要内容,如果未能解决你的问题,请参考以下文章