dbibackend icon indicating copy to clipboard operation
dbibackend copied to clipboard

Getting this to work on Windows 10

Open ldorad0 opened this issue 3 years ago • 2 comments
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

[EDIT] - This is not so much an issue as an attempt to make it easier for others to use this fantastic script

ldorad0 avatar Feb 01 '22 16:02 ldorad0

@ldorad0 Thank you! You can make a pull request into README.md.

lunixoid avatar Feb 02 '22 08:02 lunixoid