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

How to install obgp via python pip




obgp - Open Book Genome Project, it belongs to Classifiers:

- License :: OSI Approved :: GNU Affero General Public License v3
- License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)

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



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_obgp_env

- Active the virtual environment

test_obgp_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_obgp_env

- Active the virtual environment

source test_obgp_env/bin/active


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

To install obgp on Windows(CMD):

py -m pip install obgp

To install obgp on Unix/macOs:

pip install obgp


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

Example:

pip install obgp==0.0.1


Please see the version list below table:

VersionReleased dateCommand
obgp 0.0.422022-07-29T20:46:03Windows:

py -m pip install obgp==0.0.42

Unix/macOs:

pip install obgp==0.0.42

obgp 0.0.402022-07-29T20:41:20Windows:

py -m pip install obgp==0.0.40

Unix/macOs:

pip install obgp==0.0.40

obgp 0.0.382022-07-28T17:43:56Windows:

py -m pip install obgp==0.0.38

Unix/macOs:

pip install obgp==0.0.38

obgp 0.0.36 yanked2022-07-28T03:08:19Windows:

py -m pip install obgp==0.0.36                                                                          yanked

Unix/macOs:

pip install obgp==0.0.36                                                                          yanked

obgp 0.0.322020-03-08T20:13:11Windows:

py -m pip install obgp==0.0.32

Unix/macOs:

pip install obgp==0.0.32

obgp 0.0.32020-03-08T19:59:06Windows:

py -m pip install obgp==0.0.3

Unix/macOs:

pip install obgp==0.0.3

obgp 0.0.22020-03-08T17:15:08Windows:

py -m pip install obgp==0.0.2

Unix/macOs:

pip install obgp==0.0.2

obgp 0.0.12020-03-04T20:21:17Windows:

py -m pip install obgp==0.0.1

Unix/macOs:

pip install obgp==0.0.1


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

Download the distribution file from obgp-0.0.42-py2.py3-none-any.whl or the specific obgp version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_obgp_downloaded_file>

On Unix/macOs:

pip install <path_to_obgp_downloaded_file>


List distribution:

- obgp-0.0.1.tar.gz
- obgp-0.0.2.tar.gz
- obgp-0.0.3.tar.gz
- obgp-0.0.32.tar.gz
- obgp-0.0.36-py2.py3-none-any.whl
- obgp-0.0.36.tar.gz
- obgp-0.0.38-py2.py3-none-any.whl
- obgp-0.0.40-py2.py3-none-any.whl
- obgp-0.0.42-py2.py3-none-any.whl


Project link:

- Homepage