PHP前端开发

如何避免虚拟环境,在指定Python版本下运行脚本并打包?

百变鹏仔 5天前 #Python
文章标签 脚本

如何在特定版本下执行脚本并打包文件夹?

为了使用特定版本的 python 运行脚本,且无需进入虚拟环境,您可以:

使用 embed 版 python

下载 embed 版 python(非安装版),它是一个可执行文件,包含了 python 解释器。

立即学习“Python免费学习笔记(深入)”;

编写脚本并准备 bat 脚本:

sample bat 脚本:

@echo off.python-3.11.6-embed-amd64python.exe .codeun.py %*

现在,您可以运行 bat 脚本执行脚本,它将使用 embed 版 python,无需进入虚拟环境。