Python程序使用pyinstaller打包
Posted 柔南青空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python程序使用pyinstaller打包相关的知识,希望对你有一定的参考价值。
【基础】
查看环境中已安装的库
pip list
创建虚拟环境(Windows 7)
#venv 虚拟环境的目录名称 virtualenv venv #激活虚拟环境 #进入虚拟环境目录下 /venv/Scripts activate #退出虚拟环境 deactivate
【问题】
在虚拟环境中安装pandas库报错(系统环境中安装未报错):
error: Microsoft Visual C++ 10.0 is required. Get it with "Microsoft Windows SDK 7.1": www.microsoft.com/download/details.aspx?id=8279
【解决办法】
直接将系统库(C:python34Libsite-packages)copy至虚拟环境路径下([虚拟环境路径]Libsite-packages)
以上是关于Python程序使用pyinstaller打包的主要内容,如果未能解决你的问题,请参考以下文章
python selenium代码如何打包成.exe文件(Pyinstaller)