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

How to install udm-rest-client via python pip




udm-rest-client - Python library to interact with the Univention UDM REST API. Implements the simple Python UDM API., it belongs to Classifiers:

- License :: OSI Approved :: GNU Affero General Public License v3
- 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 udm-rest-client to support your project or you get trouble as ModuleNotFoundError: No module named "udm-rest-client" or ImportError: cannot import name "udm-rest-client" in your project, let follow this tutorial to install udm-rest-client



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_udm-rest-client_env

- Active the virtual environment

test_udm-rest-client_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_udm-rest-client_env

- Active the virtual environment

source test_udm-rest-client_env/bin/active


Step 2: OK, now, let flow below content to start the installation udm-rest-client

To install udm-rest-client on Windows(CMD):

py -m pip install udm-rest-client

To install udm-rest-client on Unix/macOs:

pip install udm-rest-client


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

Example:

pip install udm-rest-client==0.1.0


Please see the version list below table:

VersionReleased dateCommand
udm-rest-client 1.0.72022-01-18T11:46:36Windows:

py -m pip install udm-rest-client==1.0.7

Unix/macOs:

pip install udm-rest-client==1.0.7

udm-rest-client 1.0.62022-01-05T07:38:51Windows:

py -m pip install udm-rest-client==1.0.6

Unix/macOs:

pip install udm-rest-client==1.0.6

udm-rest-client 1.0.42021-11-19T07:37:16Windows:

py -m pip install udm-rest-client==1.0.4

Unix/macOs:

pip install udm-rest-client==1.0.4

udm-rest-client 1.0.32021-03-25T15:09:38Windows:

py -m pip install udm-rest-client==1.0.3

Unix/macOs:

pip install udm-rest-client==1.0.3

udm-rest-client 1.0.22021-03-25T11:19:38Windows:

py -m pip install udm-rest-client==1.0.2

Unix/macOs:

pip install udm-rest-client==1.0.2

udm-rest-client 1.0.12021-02-10T17:15:20Windows:

py -m pip install udm-rest-client==1.0.1

Unix/macOs:

pip install udm-rest-client==1.0.1

udm-rest-client 1.0.02021-02-03T10:25:49Windows:

py -m pip install udm-rest-client==1.0.0

Unix/macOs:

pip install udm-rest-client==1.0.0

udm-rest-client 0.5.02021-01-30T01:06:09Windows:

py -m pip install udm-rest-client==0.5.0

Unix/macOs:

pip install udm-rest-client==0.5.0

udm-rest-client 0.4.02020-04-07T05:25:06Windows:

py -m pip install udm-rest-client==0.4.0

Unix/macOs:

pip install udm-rest-client==0.4.0

udm-rest-client 0.3.12020-03-19T10:51:54Windows:

py -m pip install udm-rest-client==0.3.1

Unix/macOs:

pip install udm-rest-client==0.3.1

udm-rest-client 0.3.02020-03-18T12:59:28Windows:

py -m pip install udm-rest-client==0.3.0

Unix/macOs:

pip install udm-rest-client==0.3.0

udm-rest-client 0.2.12019-12-14T20:28:02Windows:

py -m pip install udm-rest-client==0.2.1

Unix/macOs:

pip install udm-rest-client==0.2.1

udm-rest-client 0.2.02019-12-10T17:55:20Windows:

py -m pip install udm-rest-client==0.2.0

Unix/macOs:

pip install udm-rest-client==0.2.0

udm-rest-client 0.1.12019-11-25T14:40:03Windows:

py -m pip install udm-rest-client==0.1.1

Unix/macOs:

pip install udm-rest-client==0.1.1

udm-rest-client 0.1.02019-11-23T09:29:04Windows:

py -m pip install udm-rest-client==0.1.0

Unix/macOs:

pip install udm-rest-client==0.1.0


Step 4: Otherwise, you can install udm-rest-client from local archives:

Download the distribution file from udm-rest-client-1.0.7.tar.gz or the specific udm-rest-client version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_udm-rest-client_downloaded_file>

On Unix/macOs:

pip install <path_to_udm-rest-client_downloaded_file>


List distribution:


Project link:

- Homepage