发布网友
共1个回答
热心网友
方法一:直接使用pip,国内网络会无法连接
1pip install pyinstaller方法二:下载源码安装
在github中打包下载,解压到电脑中,运行命令行进入此目录。
123456710111213//进入子目录 bootloadercd bootloader //build the bootloader 运行python ./waf configure build install //重新进入根目录cd .. //安装pyinstallerpython setup.py install //from http://www.cnblogs.com/osfipin/查看安装结果,运行命令:
pyinstaller --version
说明安装成功。