比如read_data,它也会将整个pandas打包,这就导致出来的exe文件非常的大。
我们打开所要打包的Python脚本,对比上图,发现pandas,docx这两个库还需要额外安装。当然,也不能缺了打包必不可少的pyinstaller库。 待打包脚本 安装库的过程不再赘述 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandaspip install -i https://pypi.tuna.tsinghua.edu.cn/simple python-docxpip i...
我们打开所要打包的Python脚本,对比上图,发现pandas,docx这两个库还需要额外安装。当然,也不能缺了打包必不可少的pyinstaller库。 待打包脚本 安装库的过程不再赘述 代码语言:javascript 复制 pip install-i https://pypi.tuna.tsinghua.edu.cn/simple pandas pip install-i https://pypi.tuna.tsinghua.edu.cn/...
我们打开所要打包的Python脚本,对比上图,发现pandas,docx这两个库还需要额外安装。当然,也不能缺了打包必不可少的pyinstaller库。 待打包脚本 安装库的过程不再赘述 复制 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandaspip install -i https://pypi.tuna.tsinghua.edu.cn/simple python-docx...
成功压缩到29.8M,如果不导入pandas这位大神,应该就可以10多M了 运行一下,毫无问题 最后再简单总结一下虚拟环境+打包的全过程(只三步): #创建虚拟环境conda create-n aotu python=3.6#激活虚拟环境conda activate aotu#Pyinstaller打包Pyinstaller-F-w-i apple.ico py_word.py ...
我们打开所要打包的Python脚本,对比上图,发现pandas,docx这两个库还需要额外安装。当然,也不能缺了打包必不可少的pyinstaller库。 安装库的过程不再赘述 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas pip install -i https://pypi.tuna.tsinghua.edu.cn/simple python-docx ...
2. 封装成exe 2.1 示范程序用了pandas包 importpandasaspdimportsys,osimportConfigParser 2.2 pyinstaller使用封装语句 基本语句 pyinstaller -F demo.py 一般来说用这个就可以了 -D, --one-dir打包成一个文件夹,默认 -F, --one-file打包成一个exe文件 ...
问题 小弟想用pandas生成一个DataFrame输入为.csv文件,然而打包的.exe文件,运行后无法实现。 1.环境 Win10 Python3.6.4(Anaconda最新版) PyInstaller: 3.3.1 需要打包的代码(amyfile.py) {代码...} 第一个坑...
我们打开所要打包的Python脚本,对比上图,发现 pandas , docx 这两个库还需要额外安装。当然,也不能缺了打包必不可少的 pyinstaller 库。 待打包脚本 安装库的过程不再赘述 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas pip install -i https://pypi.tuna.tsinghua.edu.cn/simple python...