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

How to install gedcompy via python pip




gedcompy - Parse and create GEDCOM (genealogy) files, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
- Programming Language :: Python :: 2.5
- Programming Language :: Python :: 2.6
- Topic :: Sociology
- Topic :: Sociology :: Genealogy
- Topic :: Sociology :: History
- Topic :: Text Processing

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



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_gedcompy_env

- Active the virtual environment

test_gedcompy_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_gedcompy_env

- Active the virtual environment

source test_gedcompy_env/bin/active


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

To install gedcompy on Windows(CMD):

py -m pip install gedcompy

To install gedcompy on Unix/macOs:

pip install gedcompy


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

Example:

pip install gedcompy==0.1


Please see the version list below table:

VersionReleased dateCommand
gedcompy 0.2.92015-12-13T13:29:08Windows:

py -m pip install gedcompy==0.2.9

Unix/macOs:

pip install gedcompy==0.2.9

gedcompy 0.2.82014-12-29T11:52:21Windows:

py -m pip install gedcompy==0.2.8

Unix/macOs:

pip install gedcompy==0.2.8

gedcompy 0.2.72014-12-21T19:54:18Windows:

py -m pip install gedcompy==0.2.7

Unix/macOs:

pip install gedcompy==0.2.7

gedcompy 0.2.62014-12-14T13:07:31Windows:

py -m pip install gedcompy==0.2.6

Unix/macOs:

pip install gedcompy==0.2.6

gedcompy 0.2.12014-12-14T12:55:01Windows:

py -m pip install gedcompy==0.2.1

Unix/macOs:

pip install gedcompy==0.2.1

gedcompy 0.12014-08-24T13:08:02Windows:

py -m pip install gedcompy==0.1

Unix/macOs:

pip install gedcompy==0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_gedcompy_downloaded_file>

On Unix/macOs:

pip install <path_to_gedcompy_downloaded_file>


List distribution:

- gedcompy-0.1.tar.gz
- gedcompy-0.2.1.tar.gz
- gedcompy-0.2.5.dev.tar.gz
- gedcompy-0.2.6.tar.gz
- gedcompy-0.2.7.tar.gz
- gedcompy-0.2.8.tar.gz
- gedcompy-0.2.9.tar.gz


Project link: