1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-11-10 04:31:44 +00:00

Add comments about USB backend errors.

This commit is contained in:
Pablo Curiel 2021-02-20 14:27:49 -04:00
parent bd15898227
commit 6f87e25f26

View file

@ -24,6 +24,11 @@
# This script depends on PyUSB and tqdm. # This script depends on PyUSB and tqdm.
# You can install both with `pip install pyusb tqdm`. # You can install both with `pip install pyusb tqdm`.
# libusb needs to be installed as well. PyUSB uses it as its USB backend. Otherwise, a NoBackend exception will be raised while calling PyUSB functions.
# Under Windows, the recommended way to do this is by installing the libusb driver with Zadig (https://zadig.akeo.ie). This is a common step in Switch modding guides.
# Under MacOS, use `brew install libusb` to install libusb via Homebrew.
# Under Linux, you should be good to go from the start. If not, just use the packet manager from your distro to install libusb.
import os import os
import usb.core import usb.core
import usb.util import usb.util