python脚本脱离python环境运行

时间:2025-03-27 10:40:30

一、简单粗暴,首先需要安装pyinstaller

pip install pyinstaller

二、安装完pyinstaller之后,就可以执行pyinstall命令了

pyinstaller -F

比如以上命令,在相应的脚本路径下,执行,则会把打包成一个.exe文件,无障碍的情况下,到同级目录dist下,可以查看到文件,那么该文件就可以独立运行了,记得改脚本依赖的配置文件需要与exe文件共存

三、打包过程中可能会遇到的一些问题

1、pyinstaller : AttributeError: module ‘enum’ has no attribute ‘IntFlag’

class RegexFlag():
AttributeError: module 'enum' has no attribute 'IntFlag'
#本来应该是直接更新pip install -U tensorflow #但是我为了彻底除去enum,所以我是先卸载,再安装具体如下

pip uninstall tensorflow

pip install tensorflow

2、若有其它再补充