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

How to install pygeoip via python pip




pygeoip - Pure Python GeoIP API, it belongs to Classifiers:

- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 3.2

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



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_pygeoip_env

- Active the virtual environment

test_pygeoip_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_pygeoip_env

- Active the virtual environment

source test_pygeoip_env/bin/active


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

To install pygeoip on Windows(CMD):

py -m pip install pygeoip

To install pygeoip on Unix/macOs:

pip install pygeoip


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

Example:

pip install pygeoip==0.1.6


Please see the version list below table:

VersionReleased dateCommand
pygeoip 0.3.22014-10-28T16:10:13Windows:

py -m pip install pygeoip==0.3.2

Unix/macOs:

pip install pygeoip==0.3.2

pygeoip 0.3.12014-02-05T15:11:51Windows:

py -m pip install pygeoip==0.3.1

Unix/macOs:

pip install pygeoip==0.3.1

pygeoip 0.3.02013-11-13T16:49:21Windows:

py -m pip install pygeoip==0.3.0

Unix/macOs:

pip install pygeoip==0.3.0

pygeoip 0.2.72013-07-15T14:22:43Windows:

py -m pip install pygeoip==0.2.7

Unix/macOs:

pip install pygeoip==0.2.7

pygeoip 0.2.62013-02-23T15:10:51Windows:

py -m pip install pygeoip==0.2.6

Unix/macOs:

pip install pygeoip==0.2.6

pygeoip 0.2.52012-10-18T00:49:10Windows:

py -m pip install pygeoip==0.2.5

Unix/macOs:

pip install pygeoip==0.2.5

pygeoip 0.2.42012-08-06T20:40:25Windows:

py -m pip install pygeoip==0.2.4

Unix/macOs:

pip install pygeoip==0.2.4

pygeoip 0.2.32012-04-10T16:20:10Windows:

py -m pip install pygeoip==0.2.3

Unix/macOs:

pip install pygeoip==0.2.3

pygeoip 0.2.22011-09-22T15:15:56Windows:

py -m pip install pygeoip==0.2.2

Unix/macOs:

pip install pygeoip==0.2.2

pygeoip 0.2.12011-06-05T14:01:28Windows:

py -m pip install pygeoip==0.2.1

Unix/macOs:

pip install pygeoip==0.2.1

pygeoip 0.22011-06-03T15:58:04Windows:

py -m pip install pygeoip==0.2

Unix/macOs:

pip install pygeoip==0.2

pygeoip 0.1.62011-06-03T12:12:31Windows:

py -m pip install pygeoip==0.1.6

Unix/macOs:

pip install pygeoip==0.1.6


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pygeoip_downloaded_file>

On Unix/macOs:

pip install <path_to_pygeoip_downloaded_file>


List distribution:


Project link:

- Homepage