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

How to install who_ldap via python pip




who_ldap - LDAP plugin for repoze.who, it belongs to Classifiers:

- Intended Audience :: Developers
- Natural Language :: English
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3.4
- Topic :: Internet
- Topic :: Internet :: WWW/HTTP
- Topic :: Internet :: WWW/HTTP :: WSGI
- Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
- Topic :: System
- Topic :: System :: Systems Administration
- Topic :: System :: Systems Administration :: Authentication/Directory
- Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP

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



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_who_ldap_env

- Active the virtual environment

test_who_ldap_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_who_ldap_env

- Active the virtual environment

source test_who_ldap_env/bin/active


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

To install who_ldap on Windows(CMD):

py -m pip install who_ldap

To install who_ldap on Unix/macOs:

pip install who_ldap


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

Example:

pip install who_ldap==2.0.0


Please see the version list below table:

VersionReleased dateCommand
who_ldap 4.0.02018-03-23T22:37:26Windows:

py -m pip install who_ldap==4.0.0

Unix/macOs:

pip install who_ldap==4.0.0

who_ldap 3.2.22017-02-16T01:15:00Windows:

py -m pip install who_ldap==3.2.2

Unix/macOs:

pip install who_ldap==3.2.2

who_ldap 3.2.12016-06-22T22:18:29Windows:

py -m pip install who_ldap==3.2.1

Unix/macOs:

pip install who_ldap==3.2.1

who_ldap 3.2.02016-06-22T22:05:07Windows:

py -m pip install who_ldap==3.2.0

Unix/macOs:

pip install who_ldap==3.2.0

who_ldap 3.1.02015-02-09T22:15:09Windows:

py -m pip install who_ldap==3.1.0

Unix/macOs:

pip install who_ldap==3.1.0

who_ldap 3.0.22014-06-11T17:52:01Windows:

py -m pip install who_ldap==3.0.2

Unix/macOs:

pip install who_ldap==3.0.2

who_ldap 3.0.12014-05-19T22:24:20Windows:

py -m pip install who_ldap==3.0.1

Unix/macOs:

pip install who_ldap==3.0.1

who_ldap 3.0.02014-05-19T22:05:47Windows:

py -m pip install who_ldap==3.0.0

Unix/macOs:

pip install who_ldap==3.0.0

who_ldap 2.0.02014-04-29T21:29:02Windows:

py -m pip install who_ldap==2.0.0

Unix/macOs:

pip install who_ldap==2.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_who_ldap_downloaded_file>

On Unix/macOs:

pip install <path_to_who_ldap_downloaded_file>


List distribution:


Project link:

- Homepage