Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install usbdev via python pip




usbdev - USBdev is a tool recognition of USB devices, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
- Operating System :: POSIX :: Linux
- Operating System :: Unix

When you know about this project and you want to new install usbdev to support your project or you get trouble as ModuleNotFoundError: No module named "usbdev" or ImportError: cannot import name "usbdev" in your project, let follow this tutorial to install usbdev



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_usbdev_env

- Active the virtual environment

test_usbdev_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_usbdev_env

- Active the virtual environment

source test_usbdev_env/bin/active


Step 2: OK, now, let flow below content to start the installation usbdev

To install usbdev on Windows(CMD):

py -m pip install usbdev

To install usbdev on Unix/macOs:

pip install usbdev


Step 3: If you want to install a specific usbdev version, add ==<usbdev version> to the end command line

Example:

pip install usbdev==2015.04.18


Please see the version list below table:

VersionReleased dateCommand
usbdev 2019.11.52019-12-02T19:02:35Windows:

py -m pip install usbdev==2019.11.5

Unix/macOs:

pip install usbdev==2019.11.5

usbdev 2019.1.172019-01-25T14:32:13Windows:

py -m pip install usbdev==2019.1.17

Unix/macOs:

pip install usbdev==2019.1.17

usbdev 2017.8.222017-08-22T09:17:49Windows:

py -m pip install usbdev==2017.8.22

Unix/macOs:

pip install usbdev==2017.8.22

usbdev 2016.09.132016-09-13T15:16:23Windows:

py -m pip install usbdev==2016.09.13

Unix/macOs:

pip install usbdev==2016.09.13

usbdev 2016.03.032016-03-07T19:09:52Windows:

py -m pip install usbdev==2016.03.03

Unix/macOs:

pip install usbdev==2016.03.03

usbdev 2015.12.172015-12-21T09:16:06Windows:

py -m pip install usbdev==2015.12.17

Unix/macOs:

pip install usbdev==2015.12.17

usbdev 2015.09.042015-09-18T10:50:29Windows:

py -m pip install usbdev==2015.09.04

Unix/macOs:

pip install usbdev==2015.09.04

usbdev 2015.06.222015-07-04T00:07:01Windows:

py -m pip install usbdev==2015.06.22

Unix/macOs:

pip install usbdev==2015.06.22

usbdev 2015.05.052015-05-13T14:38:05Windows:

py -m pip install usbdev==2015.05.05

Unix/macOs:

pip install usbdev==2015.05.05

usbdev 2015.04.242015-04-26T00:42:41Windows:

py -m pip install usbdev==2015.04.24

Unix/macOs:

pip install usbdev==2015.04.24

usbdev 2015.04.212015-04-23T12:58:26Windows:

py -m pip install usbdev==2015.04.21

Unix/macOs:

pip install usbdev==2015.04.21

usbdev 2015.04.182015-04-18T04:42:55Windows:

py -m pip install usbdev==2015.04.18

Unix/macOs:

pip install usbdev==2015.04.18


Step 4: Otherwise, you can install usbdev from local archives:

Download the distribution file from usbdev-2019.11.5.tar.gz or the specific usbdev version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_usbdev_downloaded_file>

On Unix/macOs:

pip install <path_to_usbdev_downloaded_file>


List distribution:


Project link:

- Homepage