先介绍下 pip 命令,pip 是一个现代的,通用的 Python包管理工具。提供了对 Python 包的查找、下载、安装、卸载的功能。
Pyinstaller 用于将Python代码,转换成一个能在windows上运行的exe格式的程序
1. 安装 Pyinstaller
pip install pyinstall
有时候pip提供的并不是最新版本的pyinstall,所以可以使用下面的链接,直接从github获取程序
pip install https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz
网友评论