pip命令提示unknown or unsupported command 'install'——python3.7安装PyInstaller经验

安装python没自定义路径
pip install pyinstaller开始给我报错
Can't locate strict.pm in @INC (@INC contain in perl。。。
还以为是perl的问题 把perl卸载了 (尴尬)
之后再计算机里找到pip.exe的具体位置
我的在C:\Users\Administrator\AppData\Local\Programs\Python\Python37-32\Scripts里(晕)
然后在 cmd里 cd 路径
然后pip.exe install pyinstaller
在这里插入图片描述
之后 cd 打包py的路径pyinstaller [-i curve.ico] -F <**.py>即可打包
在这里插入图片描述

你可能感兴趣的:(Python,pip,PyInstaller安装)