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

How to install whois-alt via python pip




whois-alt - Module for retrieving and parsing the WHOIS data for a domain. Supports most domains. No dependencies. Fork of pythonwhois-alt as we need quick bug fixes, it belongs to Classifiers:

- Topic :: Internet :: Name Service (DNS)

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



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_whois-alt_env

- Active the virtual environment

test_whois-alt_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_whois-alt_env

- Active the virtual environment

source test_whois-alt_env/bin/active


Step 2: OK, now, let flow below content to start the installation whois-alt

To install whois-alt on Windows(CMD):

py -m pip install whois-alt

To install whois-alt on Unix/macOs:

pip install whois-alt


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

Example:

pip install whois-alt==2.4.4


Please see the version list below table:

VersionReleased dateCommand
whois-alt 2.5.02020-04-10T19:05:36Windows:

py -m pip install whois-alt==2.5.0

Unix/macOs:

pip install whois-alt==2.5.0

whois-alt 2.4.92020-04-10T17:02:29Windows:

py -m pip install whois-alt==2.4.9

Unix/macOs:

pip install whois-alt==2.4.9

whois-alt 2.4.82020-04-10T16:59:03Windows:

py -m pip install whois-alt==2.4.8

Unix/macOs:

pip install whois-alt==2.4.8

whois-alt 2.4.72020-04-10T16:52:54Windows:

py -m pip install whois-alt==2.4.7

Unix/macOs:

pip install whois-alt==2.4.7

whois-alt 2.4.62020-04-10T16:44:32Windows:

py -m pip install whois-alt==2.4.6

Unix/macOs:

pip install whois-alt==2.4.6

whois-alt 2.4.52020-04-10T16:41:46Windows:

py -m pip install whois-alt==2.4.5

Unix/macOs:

pip install whois-alt==2.4.5

whois-alt 2.4.42020-04-10T16:34:26Windows:

py -m pip install whois-alt==2.4.4

Unix/macOs:

pip install whois-alt==2.4.4


Step 4: Otherwise, you can install whois-alt from local archives:

Download the distribution file from whois_alt-2.5.0.tar.gz or the specific whois-alt version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_whois-alt_downloaded_file>

On Unix/macOs:

pip install <path_to_whois-alt_downloaded_file>


List distribution:


Project link:

- Homepage