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

How to install gprime via python pip




gprime - gPrime webapp for genealogy, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v2 (GPLv2)
- Topic :: Sociology
- Topic :: Sociology :: Genealogy

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



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_gprime_env

- Active the virtual environment

test_gprime_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_gprime_env

- Active the virtual environment

source test_gprime_env/bin/active


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

To install gprime on Windows(CMD):

py -m pip install gprime

To install gprime on Unix/macOs:

pip install gprime


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

Example:

pip install gprime==0.0.0


Please see the version list below table:

VersionReleased dateCommand
gprime 0.0.52016-12-27T04:21:40Windows:

py -m pip install gprime==0.0.5

Unix/macOs:

pip install gprime==0.0.5

gprime 0.0.32016-11-26T12:52:03Windows:

py -m pip install gprime==0.0.3

Unix/macOs:

pip install gprime==0.0.3

gprime 0.0.22016-11-26T09:59:05Windows:

py -m pip install gprime==0.0.2

Unix/macOs:

pip install gprime==0.0.2

gprime 0.0.12016-11-25T18:07:51Windows:

py -m pip install gprime==0.0.1

Unix/macOs:

pip install gprime==0.0.1

gprime 0.0.02016-11-25T04:53:29Windows:

py -m pip install gprime==0.0.0

Unix/macOs:

pip install gprime==0.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_gprime_downloaded_file>

On Unix/macOs:

pip install <path_to_gprime_downloaded_file>


List distribution:

- gprime-0.0.0.zip
- gprime-0.0.1-py2.py3-none-any.whl
- gprime-0.0.1.tar.gz
- gprime-0.0.1.zip
- gprime-0.0.2-py2.py3-none-any.whl
- gprime-0.0.2.tar.gz
- gprime-0.0.3-py2.py3-none-any.whl
- gprime-0.0.3.tar.gz
- gprime-0.0.5-py2.py3-none-any.whl
- gprime-0.0.5.tar.gz
- gprime-1.0.6a0-py2.py3-none-any.whl
- gprime-1.0.6a0.tar.gz
- gprime-1.0.8a0-py2.py3-none-any.whl
- gprime-1.0.8a0.tar.gz
- gprime-1.0.9a0-py2.py3-none-any.whl
- gprime-1.0.9a0.tar.gz
- gprime-1.0.9a2-py2.py3-none-any.whl
- gprime-1.0.9a2.tar.gz


Project link:

- Homepage