fusee-launcher
fusee-launcher copied to clipboard
No module named usb
When attempting to load the fusee launcher it spits out an error saying no module named USB found. I installed pyusb 1.0.2, but I'm still having the same issue...
Are you using the Python3 module? Remember fusee-launcher use Python3...
Install python-pyusb
I used this to move forward.
pip3 install pyusb
Sorry to revive this topic, but even after installing pyusb I get the following:
Traceback (most recent call last): File "./fusee-launcher.py", line 593, in <module> switch = RCMHax(wait_for_device=arguments.wait, vid=arguments.vid, File "./fusee-launcher.py", line 466, in __init__ self.dev = self._find_device(vid, pid) File "./fusee-launcher.py", line 496, in _find_device return self.backend.find_device(vid, pid) File "./fusee-launcher.py", line 133, in find_device import usb ModuleNotFoundError: No module named 'usb'
Edit: fixed after installing python3-usb