python导出为exe
创建python虚拟环境
conda create -n py2exe python=3.6
进入虚拟环境
activate py2exe
安装相关包
pip install pyinstaller
......................
python打包为exe
https://blog.csdn.net/xc_zhou/article/details/80952022
关闭虚拟环境
conda deactivate
conda create -n py2exe python=3.6
activate py2exe
pip install pyinstaller
......................
https://blog.csdn.net/xc_zhou/article/details/80952022
conda deactivate