```python-traceback
bauerj@DESKTO
…
P-5KP26RC ~ python
Python 3.6.2 (v3.6.2:5fd33b5, Jul 8 2017, 04:14:34) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> from trezorlib.device import TrezorDevice
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "c:\python3.6.2\lib\site-packages\trezorlib\device.py", line 23, in <module>
from .transport_webusb import WebUsbTransport
File "c:\python3.6.2\lib\site-packages\trezorlib\transport_webusb.py", line 24, in <module>
import usb1
File "c:\python3.6.2\lib\site-packages\usb1\__init__.py", line 61, in <module>
from . import libusb1
File "c:\python3.6.2\lib\site-packages\usb1\libusb1.py", line 199, in <module>
libusb = _loadLibrary()
File "c:\python3.6.2\lib\site-packages\usb1\libusb1.py", line 173, in _loadLibrary
return dll_loader('libusb-1.0' + suffix, **loader_kw)
File "c:\python3.6.2\lib\ctypes\__init__.py", line 348, in __init__
self._handle = _dlopen(self._name, mode)
OSError: [WinError 126] The specified module could not be found
I have some problem when I test this package on win64.
File "C:\Python27\lib\
…
site-packages\libusb1.py", line 195, in <module>
libusb = _loadLibrary()
File "C:\Python27\lib\site-packages\libusb1.py", line 166, in _loadLibrary
return dll_loader('libusb-1.0' + suffix, **loader_kw)
File "C:\Python27\lib\ctypes__init__.py", line 365, in **init**
self._handle = _dlopen(self._name, mode)
WindowsError: [Error 126] The specified module could not be found
then I download the binary for windows from http://libusb.info/
but I have no idea which file I should use and where I could put the dll file.
Could anyone help me, please