Solution to pyinstaller installation failure

Pyinstaller is a very useful library for packaging python files into exe that does not depend on the python environment, but when using "pip install pyinstaller" in cmd, there will always be many strange problems.
The solution is as follows:
1. First "pip install pywin32"
2. In "pip install wheel"
3. Finally "pip install pyinstaller"
insert image description here

Guess you like

Origin blog.csdn.net/weixin_39417044/article/details/114695039