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

How to install YubiOTP via python pip




YubiOTP - A library for verifying YubiKey OTP tokens, both locally and through a Yubico web service., it belongs to Classifiers:

- Programming Language :: Python :: 3 :: Only
- Topic :: Security

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



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_YubiOTP_env

- Active the virtual environment

test_YubiOTP_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_YubiOTP_env

- Active the virtual environment

source test_YubiOTP_env/bin/active


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

To install YubiOTP on Windows(CMD):

py -m pip install YubiOTP

To install YubiOTP on Unix/macOs:

pip install YubiOTP


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

Example:

pip install YubiOTP==0.2.0


Please see the version list below table:

VersionReleased dateCommand
YubiOTP 1.0.0.post1 yanked2020-08-13T23:12:36Windows:

py -m pip install YubiOTP==1.0.0.post1                                                                          yanked

Unix/macOs:

pip install YubiOTP==1.0.0.post1                                                                          yanked

YubiOTP 1.0.02020-08-13T23:13:37Windows:

py -m pip install YubiOTP==1.0.0

Unix/macOs:

pip install YubiOTP==1.0.0

YubiOTP 0.2.2.post12019-08-26T21:30:09Windows:

py -m pip install YubiOTP==0.2.2.post1

Unix/macOs:

pip install YubiOTP==0.2.2.post1

YubiOTP 0.2.22018-07-20T22:55:39Windows:

py -m pip install YubiOTP==0.2.2

Unix/macOs:

pip install YubiOTP==0.2.2

YubiOTP 0.2.12013-09-10T20:11:45Windows:

py -m pip install YubiOTP==0.2.1

Unix/macOs:

pip install YubiOTP==0.2.1

YubiOTP 0.2.02012-08-21T00:15:31Windows:

py -m pip install YubiOTP==0.2.0

Unix/macOs:

pip install YubiOTP==0.2.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_YubiOTP_downloaded_file>

On Unix/macOs:

pip install <path_to_YubiOTP_downloaded_file>


List distribution:


Project link:

- Homepage
- Documentation
- Source