Closed makaveli10 closed 1 year ago
Not sure why backend can connect to the Carla simulator but the example script cannot. Could you check if you can see anything in the browser after Carlaviz starts?
This issue is stale because it has been open for 30 days with no activity.
Please re-open the issue if you still have the problem in latest CarlaViz.
CARLA 0.9.11 running remotely on ubuntu 20.04 with docker on port 2000 using below command:
docker run -it --privileged --gpus all -p 2000:2000 -p 2001:2001 -p 2002:2002 -v /tmp/.X11-unix:/tmp/.X11-unix:rw carlasim/carla:0.9.11 /bin/bash
which works perfectly fine and after which I runSDL_VIDEODRIVER=offscreen ./CarlaUE4.sh -nosound
for headless carla server start which gives following output with a harmless warning:Finally, I start the carlaviz docker container using:
docker run -it --network="host" -e CARLAVIZ_HOST_IP=localhost -e CARLA_SERVER_HOST="remote-machine-domain" -e CARLA_SERVER_PORT=2000 mjxu96/carlaviz:0.9.11
which runs fine:Install carla client:
pip install carla-client-unofficial==0.9.11
and runpython3 exapmle.py
from carlaviz repo which has the below issue:Any idea what might be causing this issue?