You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Navigate to the directory where you extracted the archive
Copy the 32-bit libusb-1.0.dll to the 32-bit libusb Windows Platform folder, e.g. cp MS32\dll\libusb-1.0.dll $(python -c 'import sysconfig; print(sysconfig.get_paths()["purelib"])')/libusb/_platform/_windows/x86
Copy the 64-bit libusb-1.0.dll to the 64-bit libusb Windows Platform folder, e.g. cp MS64\dll\libusb-1.0.dll $(python -c 'import sysconfig; print(sysconfig.get_paths()["purelib"])')/libusb/_platform/_windows/x64
[EDIT] - This is not so much an issue as an attempt to make it easier for others to use this fantastic script
The text was updated successfully, but these errors were encountered:
I just discovered this method right now and it is the best solution I have found only in Windows from what I see, so good luck and I hope it works for you to save hours of searching. https://www.youtube.com/watch?v=lhz2zjjlskU
My notes on getting this to work on Windows 10
My setup
Windows 10 x64
Python 3.7
My terminal environment: git-bash
Steps
pip install libusb
cp MS32\dll\libusb-1.0.dll $(python -c 'import sysconfig; print(sysconfig.get_paths()["purelib"])')/libusb/_platform/_windows/x86
cp MS64\dll\libusb-1.0.dll $(python -c 'import sysconfig; print(sysconfig.get_paths()["purelib"])')/libusb/_platform/_windows/x64
[EDIT] - This is not so much an issue as an attempt to make it easier for others to use this fantastic script
The text was updated successfully, but these errors were encountered: