如何在特定版本下执行脚本并打包文件夹?
为了使用特定版本的 python 运行脚本,且无需进入虚拟环境,您可以:
使用 embed 版 python
下载 embed 版 python(非安装版),它是一个可执行文件,包含了 python 解释器。
编写脚本并准备 bat 脚本:
- 将脚本放入 code 文件夹中。
- 创建 bat 脚本,调用 python.exe 执行脚本,并传递参数。
sample bat 脚本:
@echo off .python-3.11.6-embed-amd64python.exe .code un.py %*
现在,您可以运行 bat 脚本执行脚本,它将使用 embed 版 python,无需进入虚拟环境。