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

How to install poly-py-tools via python pip




poly-py-tools - A package for working with Asterisk and Polycom config files., it belongs to Classifiers:

- Topic :: System
- Topic :: System :: Systems Administration

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



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_poly-py-tools_env

- Active the virtual environment

test_poly-py-tools_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_poly-py-tools_env

- Active the virtual environment

source test_poly-py-tools_env/bin/active


Step 2: OK, now, let flow below content to start the installation poly-py-tools

To install poly-py-tools on Windows(CMD):

py -m pip install poly-py-tools

To install poly-py-tools on Unix/macOs:

pip install poly-py-tools


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

Example:

pip install poly-py-tools==0.0.1


Please see the version list below table:

VersionReleased dateCommand
poly-py-tools 2.1.22019-03-08T18:14:57Windows:

py -m pip install poly-py-tools==2.1.2

Unix/macOs:

pip install poly-py-tools==2.1.2

poly-py-tools 2.0.62019-01-31T03:29:22Windows:

py -m pip install poly-py-tools==2.0.6

Unix/macOs:

pip install poly-py-tools==2.0.6

poly-py-tools 2.0.52019-01-30T19:56:19Windows:

py -m pip install poly-py-tools==2.0.5

Unix/macOs:

pip install poly-py-tools==2.0.5

poly-py-tools 2.0.32019-01-30T18:57:35Windows:

py -m pip install poly-py-tools==2.0.3

Unix/macOs:

pip install poly-py-tools==2.0.3

poly-py-tools 2.0.22019-01-30T13:12:01Windows:

py -m pip install poly-py-tools==2.0.2

Unix/macOs:

pip install poly-py-tools==2.0.2

poly-py-tools 0.0.12019-01-30T12:52:40Windows:

py -m pip install poly-py-tools==0.0.1

Unix/macOs:

pip install poly-py-tools==0.0.1


Step 4: Otherwise, you can install poly-py-tools from local archives:

Download the distribution file from poly_py_tools-2.1.2.tar.gz or the specific poly-py-tools version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_poly-py-tools_downloaded_file>

On Unix/macOs:

pip install <path_to_poly-py-tools_downloaded_file>


List distribution:


Project link:

- Homepage