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

How to install orthoani via python pip




orthoani - An implementation of the OrthoANI algorithm for nucleotide identity measurement., it belongs to Classifiers:

- Topic :: Scientific/Engineering :: Bio-Informatics
- Typing :: Typed

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



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_orthoani_env

- Active the virtual environment

test_orthoani_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_orthoani_env

- Active the virtual environment

source test_orthoani_env/bin/active


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

To install orthoani on Windows(CMD):

py -m pip install orthoani

To install orthoani on Unix/macOs:

pip install orthoani


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

Example:

pip install orthoani==0.1.0


Please see the version list below table:

VersionReleased dateCommand
orthoani 0.5.02021-05-28T10:48:25Windows:

py -m pip install orthoani==0.5.0

Unix/macOs:

pip install orthoani==0.5.0

orthoani 0.4.02020-06-26T16:58:39Windows:

py -m pip install orthoani==0.4.0

Unix/macOs:

pip install orthoani==0.4.0

orthoani 0.3.22020-06-24T22:45:30Windows:

py -m pip install orthoani==0.3.2

Unix/macOs:

pip install orthoani==0.3.2

orthoani 0.3.12020-06-24T19:57:22Windows:

py -m pip install orthoani==0.3.1

Unix/macOs:

pip install orthoani==0.3.1

orthoani 0.3.02020-06-22T13:48:36Windows:

py -m pip install orthoani==0.3.0

Unix/macOs:

pip install orthoani==0.3.0

orthoani 0.2.12020-06-19T16:35:02Windows:

py -m pip install orthoani==0.2.1

Unix/macOs:

pip install orthoani==0.2.1

orthoani 0.2.0 yanked2020-06-16T11:01:48Windows:

py -m pip install orthoani==0.2.0                                                                          yanked

Unix/macOs:

pip install orthoani==0.2.0                                                                          yanked

orthoani 0.1.0.post12020-06-15T20:33:22Windows:

py -m pip install orthoani==0.1.0.post1

Unix/macOs:

pip install orthoani==0.1.0.post1

orthoani 0.1.02020-06-15T19:45:31Windows:

py -m pip install orthoani==0.1.0

Unix/macOs:

pip install orthoani==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_orthoani_downloaded_file>

On Unix/macOs:

pip install <path_to_orthoani_downloaded_file>


List distribution:

- orthoani-0.1.0-py2.py3-none-any.whl (python version !=3.0.*,!=3.1.*,!=3.2.*,>=2.7)
- orthoani-0.1.0.tar.gz (python version !=3.0.*,!=3.1.*,!=3.2.*,>=2.7)
- orthoani-0.1.0.post1-py2.py3-none-any.whl (python version !=3.0.*,!=3.1.*,!=3.2.*,>=2.7)
- orthoani-0.1.0.post1.tar.gz (python version !=3.0.*,!=3.1.*,!=3.2.*,>=2.7)
- orthoani-0.2.0-py2.py3-none-any.whl (python version !=3.0.*,!=3.1.*,!=3.2.*,>=2.7)
- orthoani-0.2.0.tar.gz (python version !=3.0.*,!=3.1.*,!=3.2.*,>=2.7)
- orthoani-0.2.1-py2.py3-none-any.whl (python version !=3.0.*,!=3.1.*,!=3.2.*,>=2.7)
- orthoani-0.2.1.tar.gz (python version !=3.0.*,!=3.1.*,!=3.2.*,>=2.7)
- orthoani-0.3.0-py2.py3-none-any.whl (python version !=3.0.*,!=3.1.*,!=3.2.*,>=2.7)
- orthoani-0.3.0.tar.gz (python version !=3.0.*,!=3.1.*,!=3.2.*,>=2.7)
- orthoani-0.3.1-py2.py3-none-any.whl (python version !=3.0.*,!=3.1.*,!=3.2.*,>=2.7)
- orthoani-0.3.1.tar.gz (python version !=3.0.*,!=3.1.*,!=3.2.*,>=2.7)
- orthoani-0.3.2-py2.py3-none-any.whl (python version !=3.0.*,!=3.1.*,!=3.2.*,>=2.7)
- orthoani-0.3.2.tar.gz (python version !=3.0.*,!=3.1.*,!=3.2.*,>=2.7)
- orthoani-0.4.0-py2.py3-none-any.whl (python version >=3.5)
- orthoani-0.4.0.tar.gz (python version >=3.5)
- orthoani-0.5.0-py2.py3-none-any.whl (python version >=3.5)
- orthoani-0.5.0.tar.gz (python version >=3.5)


Project link:

- Homepage
- Bug Tracker
- Changelog