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

How to install Gemtools via python pip




Gemtools - Python support library for the GEM mapper and the gemtools library, it belongs to Classifiers:

- Development Status :: 4 - Beta
- Environment :: Console
- Intended Audience :: End Users/Desktop
- License :: OSI Approved :: GNU General Public License (GPL)
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Programming Language :: C
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Bio-Informatics

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



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_Gemtools_env

- Active the virtual environment

test_Gemtools_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_Gemtools_env

- Active the virtual environment

source test_Gemtools_env/bin/active


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

To install Gemtools on Windows(CMD):

py -m pip install Gemtools

To install Gemtools on Unix/macOs:

pip install Gemtools


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

Example:

pip install Gemtools==1.3


Please see the version list below table:

VersionReleased dateCommand
Gemtools 1.7.12013-11-18T12:33:33Windows:

py -m pip install Gemtools==1.7.1

Unix/macOs:

pip install Gemtools==1.7.1

Gemtools 1.72013-10-01T11:24:53Windows:

py -m pip install Gemtools==1.7

Unix/macOs:

pip install Gemtools==1.7

Gemtools 1.6.12013-04-17T15:23:11Windows:

py -m pip install Gemtools==1.6.1

Unix/macOs:

pip install Gemtools==1.6.1

Gemtools 1.62013-04-04T16:37:10Windows:

py -m pip install Gemtools==1.6

Unix/macOs:

pip install Gemtools==1.6

Gemtools 1.52012-11-27T10:46:34Windows:

py -m pip install Gemtools==1.5

Unix/macOs:

pip install Gemtools==1.5

Gemtools 1.42012-11-14T10:03:35Windows:

py -m pip install Gemtools==1.4

Unix/macOs:

pip install Gemtools==1.4

Gemtools 1.32012-10-30T11:41:10Windows:

py -m pip install Gemtools==1.3

Unix/macOs:

pip install Gemtools==1.3


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_Gemtools_downloaded_file>

On Unix/macOs:

pip install <path_to_Gemtools_downloaded_file>


List distribution:

- Gemtools-1.3.tar.gz
- Gemtools-1.4.tar.gz
- Gemtools-1.5.tar.gz
- Gemtools-1.6.tar.gz
- Gemtools-1.6.1.tar.gz
- Gemtools-1.7.tar.gz
- Gemtools-1.7.1.tar.gz


Project link:

- Homepage