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

How to install ip-liberator via python pip




ip-liberator - A command line utility to update AWS Security Groups rules., it belongs to Classifiers:

- Development Status :: 4 - Beta
- Environment :: Console
- Intended Audience :: Developers
- Intended Audience :: End Users/Desktop
- License :: OSI Approved
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Natural Language :: English
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7
- Topic :: Utilities

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



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_ip-liberator_env

- Active the virtual environment

test_ip-liberator_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_ip-liberator_env

- Active the virtual environment

source test_ip-liberator_env/bin/active


Step 2: OK, now, let flow below content to start the installation ip-liberator

To install ip-liberator on Windows(CMD):

py -m pip install ip-liberator

To install ip-liberator on Unix/macOs:

pip install ip-liberator


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

Example:

pip install ip-liberator==0.2.0


Please see the version list below table:

VersionReleased dateCommand
ip-liberator 0.2.42019-10-10T19:54:20Windows:

py -m pip install ip-liberator==0.2.4

Unix/macOs:

pip install ip-liberator==0.2.4

ip-liberator 0.2.32019-09-20T18:48:57Windows:

py -m pip install ip-liberator==0.2.3

Unix/macOs:

pip install ip-liberator==0.2.3

ip-liberator 0.2.22019-09-18T08:40:20Windows:

py -m pip install ip-liberator==0.2.2

Unix/macOs:

pip install ip-liberator==0.2.2

ip-liberator 0.2.12019-04-19T19:50:07Windows:

py -m pip install ip-liberator==0.2.1

Unix/macOs:

pip install ip-liberator==0.2.1

ip-liberator 0.2.02019-04-19T19:24:55Windows:

py -m pip install ip-liberator==0.2.0

Unix/macOs:

pip install ip-liberator==0.2.0


Step 4: Otherwise, you can install ip-liberator from local archives:

Download the distribution file from ip-liberator-0.2.4.tar.gz or the specific ip-liberator version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_ip-liberator_downloaded_file>

On Unix/macOs:

pip install <path_to_ip-liberator_downloaded_file>


List distribution:

- ip-liberator-0.2.0.tar.gz
- ip_liberator-0.2.0-py2.py3-none-any.whl
- ip-liberator-0.2.1.tar.gz
- ip_liberator-0.2.1-py2.py3-none-any.whl
- ip-liberator-0.2.2.tar.gz (python version >=3.6,<4.0)
- ip_liberator-0.2.2-py3-none-any.whl (python version >=3.6,<4.0)
- ip-liberator-0.2.3.tar.gz (python version >=3.6,<4.0)
- ip_liberator-0.2.3-py3-none-any.whl (python version >=3.6,<4.0)
- ip-liberator-0.2.4.tar.gz (python version >=3.6,<4.0)
- ip_liberator-0.2.4-py3-none-any.whl (python version >=3.6,<4.0)


Project link:

- Homepage
- Documentation
- Repository