本文主要是介绍windows编译carla报错:Make sure it is available on your Windows “py“.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
具体报错信息:
-[BuildPythonAPI]: [Batch params]: --py3
INFO: Could not find files for the given pattern(s).-[BuildPythonAPI]: [ERROR] An error ocurred while executing the py.
-[BuildPythonAPI]: [ERROR] Possible causes:
-[BuildPythonAPI]: [ERROR] - Make sure "py" is installed.
-[BuildPythonAPI]: [ERROR] - Make sure it is available on your Windows "py".
make: *** [PythonAPI] Error 1
在path_to_carla\Util\BuildTools
中找到BuildPythonAPI.bat
,然后编辑:
- 更改 py -> python3:
where py 1 >nul >>>> where python3 1>nul
- 将
py -3
替换为python
来源:https://github.com/carla-simulator/carla/issues/976
这篇关于windows编译carla报错:Make sure it is available on your Windows “py“.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!