Tons of warning and no error during make PythonAPI, and the carla/dist/ directory is not created #4248
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @GarfieldGa, sometimes the |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
I think I now get carla working on my windows:
The problem I was facing is:
I got two different versions of python on my machine, one is 32-bit and the other is 64-bit.
And the
python
command in my cmd refers to the 32-bit version whilepy
command is the 64-bit version.make PythonAPI
seems to callpython
command as default internally (in setup.py) so thatmake PythonAPI
never succeed.And when I try
py setup.py install
, the error reveals as C2664, can't perform type conversion.And for some reason, python3.7.9 seems not working with carla? I keep getting error: Microsoft Visual C++ 14.0 is required..
Note:
This error I face is actually posted by someone else and if you are facing the sa…