coiltraine icon indicating copy to clipboard operation
coiltraine copied to clipboard

blueprint 'sensor.other.can_bus' not found

Open ajboloor opened this issue 6 years ago • 1 comments

I was trying to run the COiLTRAiNE baseline agent on Carla 0.9.4 with the command:

python3  srunner/challenge/challenge_evaluator.py --file --scenario=group:ChallengeBasic --agent=../coiltraine/drive/CoILBaseline.py --config ../coiltraine/drive/sample_agent.json

And got the following error:

blueprint 'sensor.can_bus' not found

To replicate it, I tried the following code:

import carla
client = carla.Client("127.0.0.1", 2000)
client.set_timeout(2.0)
world = client.get_world()
blueprints = world.get_blueprint_library()
blueprints.find('sensor.can_bus')

Which gave the same error. I can't seem to find the sensor can_bus anywhere in the Carla docs. Any idea how to fix this?

ajboloor avatar Mar 27 '19 04:03 ajboloor

This should be fixed, I was using an older version of the scenario runner.

felipecode avatar Apr 16 '19 23:04 felipecode