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

How to install gdir via python pip




gdir - Command line tool which queries Google Directions. Displays results as human-readable text., it belongs to Classifiers:

- Intended Audience :: End Users/Desktop

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



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_gdir_env

- Active the virtual environment

test_gdir_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_gdir_env

- Active the virtual environment

source test_gdir_env/bin/active


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

To install gdir on Windows(CMD):

py -m pip install gdir

To install gdir on Unix/macOs:

pip install gdir


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

Example:

pip install gdir==0.1.3


Please see the version list below table:

VersionReleased dateCommand
gdir 0.3.22021-09-28T22:50:34Windows:

py -m pip install gdir==0.3.2

Unix/macOs:

pip install gdir==0.3.2

gdir 0.3.02021-09-11T18:44:09Windows:

py -m pip install gdir==0.3.0

Unix/macOs:

pip install gdir==0.3.0

gdir 0.2.1.02021-09-11T18:14:18Windows:

py -m pip install gdir==0.2.1.0

Unix/macOs:

pip install gdir==0.2.1.0

gdir 0.2.0.12021-09-04T17:19:39Windows:

py -m pip install gdir==0.2.0.1

Unix/macOs:

pip install gdir==0.2.0.1

gdir 0.2.0.02021-09-04T17:11:44Windows:

py -m pip install gdir==0.2.0.0

Unix/macOs:

pip install gdir==0.2.0.0

gdir 0.1.3.12021-08-14T23:44:45Windows:

py -m pip install gdir==0.1.3.1

Unix/macOs:

pip install gdir==0.1.3.1

gdir 0.1.32021-08-14T23:06:38Windows:

py -m pip install gdir==0.1.3

Unix/macOs:

pip install gdir==0.1.3


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_gdir_downloaded_file>

On Unix/macOs:

pip install <path_to_gdir_downloaded_file>


List distribution:

- gdir-0.1.3.tar.gz (python version >=3)
- gdir-0.1.3.1.tar.gz (python version >=3)
- gdir-0.2.0.0.tar.gz (python version >=3)
- gdir-0.2.0.1.tar.gz (python version >=3)
- gdir-0.2.1.0.tar.gz (python version >=3)
- gdir-0.3.0.tar.gz (python version >=3)
- gdir-0.3.2.tar.gz (python version >=3)


Project link:

- Homepage
- Download