安装不同版本的pyinstaller
python3.6 -m pip install pyinstaller python3.7 -m pip install pyinstaller
问题:
命令行输入pyinstaller,显示的是python3.7环境,无法调用python3.6环境的pyinstaller
解决:
在python3.6 /Scripts 文件夹下,复制pyinstaller.exe 为 pyinstaller3.6.exe
python3.6 -m pip install pyinstaller python3.7 -m pip install pyinstaller
命令行输入pyinstaller,显示的是python3.7环境,无法调用python3.6环境的pyinstaller
在python3.6 /Scripts 文件夹下,复制pyinstaller.exe 为 pyinstaller3.6.exe