1、安装easy_install
在命令提示符或终端程序中执行“easy_install --version”检验在当前操作系统是否安装了easy_install
C:\Users\liangxiang>easy_install --version
setuptools 28.8.0 from e:\python\lib\site-packages (Python 3.5)
若无前往**https://pypi.python.org/pypi/ez_setup下载一个名叫ez_setup.py的程序。解压安装,方法:cmd进入到对应目录下,执行命令:python ez_setup.py
D:\>cd D:\python\Lib\ez_setup-0.9
D:\python\Lib\ez_setup-0.9>python ez_setup.py
2、安装pip
法1
使用easy_install安装:进入到easy_install脚本的目录下,即在C:\python27\scirpts下运行easy_install pip进行安装
刚安装完毕的pip可能需要先升级一下自身
在windows中:
easy_install pip
python -m pip install -U pip
法2
https://pypi.python.org/pypi/pip#downloads 这里是下载地址
下载source,解压,然后cmd,执行 :
python setup.py install
安装pip
cd /d D:\Program Files\pip-22.3
python setup.py install
3、install
pyinstaller
pip install pyinstaller
第三方库
cd /d D:\Program Files\python\Scripts
>pip install openpyxl
pip install pandas // 模块库
pip install xlrd
pip install openpyxl
4、打包
需要把第三方库也加进去打包
pyinstaller -F -p xx;yy.py
pyinstaller -F -p "D:\Program Files\python\Lib\site-packages" TEST.py
pyinstaller -F -p "D:\Program Files\python\Lib\site-packages" organization.py
D:\pythonProject\Opencv__3\02__A.py
5、Exe运行报错xlrd.biffh.XLRDError: Excel xlsx file; not supported
pip uninstall xlrd
pip install xlrd==1.2.0