From: igor b. <ig...@ho...> - 2016-01-07 08:01:15
|
Hi All,I am trying to setup Libusb(1.0) and Pyusb(3.4) with on windows 10(ver 10.0.10240) and can't make it work. I tried these steps to install libusb: 1. installing libusb0.1_win322.following this steps from mailing list:This can seem confusing, however when you are on 64-bit Windows, MS64\dll\libusb-1.0.dll must be copied into C:\Windows\System32 and (for running 32-bit applications that use libusb) MS32\dll\libusb-1.0.dll must be copied into C:\Windows\SysWOW64I used this code:import usb.core import usb.util # find our device dev = usb.core.find(find_all=True)print(dev)with both cases I managed to get handle to dev which printed out: "generator object device_iter at 0x...".I can't see all my system USB devices What can I do to make it work? |