I'm working with CAN cable ECOM, and trying to write a python script to process the messages received from the cable. I came across the python library python-can, but I'm having trouble using it.
When I try to run the code:
import can
bus = can.interface.Bus(bustype='socketcan', channel='vcan0', bitrate=500000)
I get this:
Is there something I'm missing from this library that's causing the issue?
Thank you very much for your kind help.