ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I think that you installed the wrong python .egg file...
There are 2 ways:
Expand your .bashrc with the Pythonpath:
export CARLA_ROOT=~/CARLA_0.9.8 export PYTHONPATH=$PYTHONPATH:${CARLA_ROOT}/PythonAPI/carla/dist/carla-0.9.8-py2.7-linux-x86_64.egg:${CARLA_ROOT}/PythonAPI/carla/agents:${CARLA_ROOT}/PythonAPI/carla
2 | No.2 Revision |
I think that you installed the wrong python .egg file...
There are 2 ways:
Expand your .bashrc with the Pythonpath:
export CARLA_ROOT=~/CARLA_0.9.8
export Install the right .egg file
pip uninstall carla
or pip3 uninstall carla
python easy_install -m carla-0.9.8-py2.7-linux-x86_64.egg
or
python easy_install -m carla-0.9.8-py3.6-linux-x86_64.egg