pyusb 版本 1.1.1,python版本3.6
import usb.util
dev = usb.core.find(idVendor= 0x****, idProduct= 0x****)
if dev is None:
raise ValueError('Device not found')
print(dev)
dev.set_configuration()
报错 NotImplementedError: Operation not supported or unimplemented on this platform
我已经尝试用Zadig ,安装了WINUSB驱动,但是依然报错。不知道还有没有其他解决方案。
感谢