Pyinstaller安装错误解决办法

这里没有其他花里胡哨的错误,我已经错了好多次,然是我感觉其实就是一个错误,在cmd中输入 pip install pyinstaller 的时候就已经是错了的,因为pip是用于python2.0的 所以,我们应该输入pip3 install pyinstaller来进行pyinstaller 的安装。
如果还是不行,再试一下在cmd中输入

pip3 install pyinstaller -i http://mirrors.aliyun.com/pypi/simple  --trusted-host mirrors.aliyun.com

如果你是因为环境变量没有配置好,左转:https://blog.csdn.net/wardseptember/article/details/79965836?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.none-task

安装好之后可以输入 pyinstaller --version 来查看。
出现这个就成功了
出现就成功了

你可能感兴趣的:(python)