dbibackend
dbibackend copied to clipboard
Getting this to work on Windows 10
trafficstars
My notes on getting this to work on Windows 10
-
My setup
Windows 10 x64 Python 3.7 My terminal environment: git-bash
-
Steps
- Make sure you install the libusb python package
pip install libusb - Download libusb-1.0.20
- 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
- Make sure you install the libusb python package
[EDIT] - This is not so much an issue as an attempt to make it easier for others to use this fantastic script
@ldorad0 Thank you! You can make a pull request into README.md.