I reinstalled Anaconda with add PATH to name option checked. I ran the python requirements from the github: pip install flask flask_socketio flask_cors odrive, they all installed successfully (requirement already satisfied from previous runs of the command).
Launching the GUI has the bar turn green, however the interface does not actually work. Debug output as follows:
self.run() File “C:\Users\ConnorLeClaire\Anaconda3\lib\threading.py”, line 870, in run
self._target(*self._args, **self._kwargs)
File “C:\Users\ConnorLeClaire\Anaconda3\lib\site-packages\socketio\server.py”, line 690, in _handle_event_internal
r = server._trigger_event(data[0], namespace, sid, *data[1:]) File “C:\Users\ConnorLeClaire\Anaconda3\lib\site-packages\socketio\server.py”, line 714, in _trigger_event
return self.handlers[namespace]event File “C:\Users\ConnorLeClaire\Anaconda3\lib\site-packages\flask_socketio_init_.py”, line 284, in _handler
return self.handle_event(handler, message, namespace, sid, File "C:\Users\ConnorLeClaire\Anaconda3\lib\site-packages\flask_socketio_init.py", line 767, in _handle_event
ret = handler(*args) File “C:\Users\CONNOR~1\AppData\Local\Temp\1m2eIZGTRxmt3FzYSWZkn2xgNP8\resources\server\odrive_server.py”, line 86, in getODrives
start_discovery() File “C:\Users\CONNOR~1\AppData\Local\Temp\1m2eIZGTRxmt3FzYSWZkn2xgNP8\resources\server\odrive_server.py”, line 74, in start_discovery
fibre.find_all(“usb”, None, discovered_device, shutdown, shutdown, log) AttributeError: module ‘fibre’ has no attribute ‘find_all’
Any thoughts to what this could be?