python 生成exe,脱离python环境运行

1、python环境为Anaconda2,安装的环境为python2.7.12。
安装Anaconda2,路径为https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
Anaconda2默认为base,重新生成一个虚拟环境(默认安装的base安装了太多模块,生成exe运行速度较慢)
python 生成exe,脱离python环境运行_第1张图片
并切换到python27
python 生成exe,脱离python环境运行_第2张图片
安装pyinstaller模块,在上图中,输入conda install pyinstaller ,即可安装。
查看是否按照完成,注意大小写。
python 生成exe,脱离python环境运行_第3张图片
2、利用pyinstaller生成exe
安装完pyinstaller后,在下图路径中有pyinstaller.exe
python 生成exe,脱离python环境运行_第4张图片
把你要生成exe的python放在上图的路径下,输入pyinstaller.exe -F pythonFuncIn.py --hidden-import scipy._lib.messagestream,(因为我这个脚本用到scipy模块,若不加–hidden-import scipy._lib.messagestream,则会报错,没有messagestream模块)则在dist文件夹下,会生成pythonFuncIn.exe,可以脱离python环境运行。
python 生成exe,脱离python环境运行_第5张图片

你可能感兴趣的:(python)