FastestRplidar icon indicating copy to clipboard operation
FastestRplidar copied to clipboard

/_fastestrplidar.so: wrong ELF class: ELFCLASS64

Open Eric-nguyen1402 opened this issue 3 years ago • 0 comments

After I finished installing the fastestrplidar library when I ran this example : ` from fastestrplidar import FastestRplidar

if name == 'main': # Initialize the library and creates and object lidar = FastestRplidar()

# connects the lidar using the default port (tty/USB0)
lidar.connectlidar()
# Starts the lidar motor
lidar.startmotor()
# fetches the lidar scan data
result = lidar.fetchscandata()
print ("result - ")
print (result)

# done. Stops the motor
lidar.stopmotor()

` I meet this error: /_fastestrplidar.so: wrong ELF class: ELFCLASS64 and the _fastestrplidar.so file is empty. Has anyone had a solution for this problem?

Eric-nguyen1402 avatar Nov 02 '21 03:11 Eric-nguyen1402