I edit
function Python(name)
if family == "windows" then
name = str_replace(name, "/", "\\")
if not python_in_path then
-- Python is usually registered for .py files in Windows
return name
end
end
return "python " .. name
end
to
function Python(name)
return "python " .. name
end
14:40
I think it may be that my Python environment is not properly configured