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

How to install IPy via python pip




IPy - Class and tools for handling of IPv4 and IPv6 addresses and networks, it belongs to Classifiers:

- Environment :: Plugins
- Intended Audience :: System Administrators
- License :: OSI Approved :: BSD License
- Natural Language :: English
- Topic :: Communications
- Topic :: Internet
- Topic :: Software Development :: Libraries
- Topic :: Software Development :: Libraries :: Python Modules
- Topic :: System
- Topic :: System :: Networking

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



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_IPy_env

- Active the virtual environment

test_IPy_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_IPy_env

- Active the virtual environment

source test_IPy_env/bin/active


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

To install IPy on Windows(CMD):

py -m pip install IPy

To install IPy on Unix/macOs:

pip install IPy


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

Example:

pip install IPy==0.73


Please see the version list below table:

VersionReleased dateCommand
IPy 1.012020-12-01T20:33:09Windows:

py -m pip install IPy==1.01

Unix/macOs:

pip install IPy==1.01

IPy 1.002019-02-28T00:20:29Windows:

py -m pip install IPy==1.00

Unix/macOs:

pip install IPy==1.00

IPy 0.832015-04-05T00:59:23Windows:

py -m pip install IPy==0.83

Unix/macOs:

pip install IPy==0.83

IPy 0.822014-10-06T04:30:09Windows:

py -m pip install IPy==0.82

Unix/macOs:

pip install IPy==0.82

IPy 0.812013-04-08T18:47:13Windows:

py -m pip install IPy==0.81

Unix/macOs:

pip install IPy==0.81

IPy 0.802013-03-26T21:52:23Windows:

py -m pip install IPy==0.80

Unix/macOs:

pip install IPy==0.80

IPy 0.762013-03-19T01:50:36Windows:

py -m pip install IPy==0.76

Unix/macOs:

pip install IPy==0.76

IPy 0.752011-04-12T11:59:06Windows:

py -m pip install IPy==0.75

Unix/macOs:

pip install IPy==0.75

IPy 0.742011-02-15T23:04:56Windows:

py -m pip install IPy==0.74

Unix/macOs:

pip install IPy==0.74

IPy 0.732011-02-15T00:25:17Windows:

py -m pip install IPy==0.73

Unix/macOs:

pip install IPy==0.73


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_IPy_downloaded_file>

On Unix/macOs:

pip install <path_to_IPy_downloaded_file>


List distribution:

- IPy-0.73.tar.gz
- IPy-0.74.tar.gz
- IPy-0.75.tar.gz
- IPy-0.76.tar.gz
- IPy-0.80.tar.gz
- IPy-0.81.tar.gz
- IPy-0.82a.tar.gz
- IPy-0.82.tar.gz
- IPy-0.83.tar.gz
- IPy-1.00.tar.gz
- IPy-1.01.tar.gz


Project link:

- Homepage
- Download