Working on pyinstaller 3.1, python 2.7.9, and tkinter.
Try to use pyusb instead of pyserial, but no backend available. Looking into Pyusb on windows - no backend available, PyUSB ValueError: No backend available, USB interface in Python, and so on, it seems that I need to install libusb. But when I run "import usb" and "import usb.core" under python, no errors. I have no idea how to install it and how to use it in my project, how to tell my project where libusb is.
what I did:
(1) download libusb-win32-bin v1.2.6.0 (01/17/2012)
(2) x86\libusb0_x86.dll renamed to libusb0.dll
(3) On 64 bit, put it to Windows\syswow64\libusb0.dll. On 32 bit, Installs to Windows\system32\libusb0.dll.
Still not working...
By the way, I would like to finish one standalone python-based windows app. I do not hope others to install libusb to run my app. What to do?