pyinstaller 指定 python版本
时间: 2023-09-23 15:06:57 浏览: 671
Python应用程序打包
在使用 PyInstaller 打包 Python 脚本时,可以使用以下命令指定 Python 版本:
```
$ pyinstaller --python=python3.6 your_script.py
```
其中,`python3.6` 是你想要使用的 Python 版本。这样 PyInstaller 就会使用指定版本的 Python 运行时来打包你的脚本。
阅读全文