0

I'm trying to install CARLA 0.9.13 on Python 3.10. on Windows 8.

I'm following the steps mentioned in this guide.

When I reach this point I'm having troubles with the following piece of instruction.

Install Client Library

Specifically with this piece of code:

pip3 install carla

This always returns the following error.

I have used "Package Install" and downloaded the relevant files from Github along with the "Additional Maps".

Please point out where I'm messing up.

Thanks in advance.

senSMEM8
  • 1
  • 3

2 Answers2

0

From the documentation Carla as a pip installable package is only available for python versions 2.7, 3.6, 3.7, and 3.8.

There is a github issue relating to getting it to build on 3.10.

https://github.com/carla-simulator/carla/issues/5538

But that's for ubuntu not windows. Looks like it'll involve quite a bit of C++ knowledge to make it work. Only other alternative I can see would be to install python 3.8 and try.

RustyPython
  • 370
  • 1
  • 7
0

I had faced the same issue, I was using Python 3.11, downgrading it to Python 3.8 solved the issue on Windows 10.
However, downgrading to Python 3.7 doesn't help.

imxitiz
  • 3,920
  • 3
  • 9
  • 33