如何从当前正在执行的 Python 脚本中找到当前正在运行的 Python 解释器的完整路径?
sys.executable包含当前运行的 Python 解释器的完整路径。
sys.executable
import sys print(sys.executable)
现在记录在这里