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

How to install python-freeipa via python pip




python-freeipa - Lightweight FreeIPA client, it belongs to Classifiers:

- Topic :: System
- Topic :: System :: Systems Administration
- Topic :: System :: Systems Administration :: Authentication/Directory

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



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_python-freeipa_env

- Active the virtual environment

test_python-freeipa_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_python-freeipa_env

- Active the virtual environment

source test_python-freeipa_env/bin/active


Step 2: OK, now, let flow below content to start the installation python-freeipa

To install python-freeipa on Windows(CMD):

py -m pip install python-freeipa

To install python-freeipa on Unix/macOs:

pip install python-freeipa


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

Example:

pip install python-freeipa==0.1


Please see the version list below table:

VersionReleased dateCommand
python-freeipa 1.0.62020-07-02T22:13:39Windows:

py -m pip install python-freeipa==1.0.6

Unix/macOs:

pip install python-freeipa==1.0.6

python-freeipa 1.0.52020-04-29T15:31:24Windows:

py -m pip install python-freeipa==1.0.5

Unix/macOs:

pip install python-freeipa==1.0.5

python-freeipa 1.0.42020-04-21T23:25:51Windows:

py -m pip install python-freeipa==1.0.4

Unix/macOs:

pip install python-freeipa==1.0.4

python-freeipa 1.0.32020-04-17T14:09:26Windows:

py -m pip install python-freeipa==1.0.3

Unix/macOs:

pip install python-freeipa==1.0.3

python-freeipa 1.0.12020-02-25T12:57:51Windows:

py -m pip install python-freeipa==1.0.1

Unix/macOs:

pip install python-freeipa==1.0.1

python-freeipa 1.0.02020-01-21T21:59:24Windows:

py -m pip install python-freeipa==1.0.0

Unix/macOs:

pip install python-freeipa==1.0.0

python-freeipa 0.2.52019-11-24T06:56:05Windows:

py -m pip install python-freeipa==0.2.5

Unix/macOs:

pip install python-freeipa==0.2.5

python-freeipa 0.2.42019-10-23T19:08:56Windows:

py -m pip install python-freeipa==0.2.4

Unix/macOs:

pip install python-freeipa==0.2.4

python-freeipa 0.2.32019-04-30T14:37:04Windows:

py -m pip install python-freeipa==0.2.3

Unix/macOs:

pip install python-freeipa==0.2.3

python-freeipa 0.2.22019-04-23T10:59:15Windows:

py -m pip install python-freeipa==0.2.2

Unix/macOs:

pip install python-freeipa==0.2.2

python-freeipa 0.2.12018-06-28T22:34:33Windows:

py -m pip install python-freeipa==0.2.1

Unix/macOs:

pip install python-freeipa==0.2.1

python-freeipa 0.2.02018-05-06T23:16:03Windows:

py -m pip install python-freeipa==0.2.0

Unix/macOs:

pip install python-freeipa==0.2.0

python-freeipa 0.1.32018-04-20T19:50:54Windows:

py -m pip install python-freeipa==0.1.3

Unix/macOs:

pip install python-freeipa==0.1.3

python-freeipa 0.1.22017-05-26T13:34:38Windows:

py -m pip install python-freeipa==0.1.2

Unix/macOs:

pip install python-freeipa==0.1.2

python-freeipa 0.1.12017-05-24T20:41:15Windows:

py -m pip install python-freeipa==0.1.1

Unix/macOs:

pip install python-freeipa==0.1.1

python-freeipa 0.12017-05-24T19:08:37Windows:

py -m pip install python-freeipa==0.1

Unix/macOs:

pip install python-freeipa==0.1


Step 4: Otherwise, you can install python-freeipa from local archives:

Download the distribution file from python-freeipa-1.0.6.tar.gz or the specific python-freeipa version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_python-freeipa_downloaded_file>

On Unix/macOs:

pip install <path_to_python-freeipa_downloaded_file>


List distribution:


Project link:

- Homepage