Windows 批处理文件不启动 python 脚本

问题描述 投票:0回答:0

以下windows批处理文件旨在启动一个名为

cl4.py
的python脚本:

@echo off
"C:\Users\kptzx\Appdata\Local\Programs\Python\Python311\python.exe" "C:\Users\kptzx\Documents\Python_Projects\Internet_Connection_Logging\Option_4\cl4.py"
pause

但是,当我运行批处理文件时,命令窗口打开,并只输出以下内容:

C:\Users\kptzx\Documents\Python_Projects\Internet_Connection_ Logging\Option_04>

程序没有启动。

我可以导航到包含脚本的目录并发出命令

python cl4.py
,脚本运行正常。谁能解释为什么我的批处理文件不起作用?

python-3.x batch-file
© www.soinside.com 2019 - 2024. All rights reserved.