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

How to install ncbitaxonomy via python pip




ncbitaxonomy - The basic NCBI taxonomy functionality from ETE3, it belongs to Classifiers:

- Development Status :: 6 - Mature
- Environment :: Console
- Environment :: X11 Applications
- Intended Audience :: Other Audience
- Intended Audience :: Science/Research
- License :: OSI Approved
- License :: OSI Approved :: GNU General Public License (GPL)
- Natural Language :: English
- Operating System :: MacOS
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Programming Language :: Python
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Bio-Informatics
- Topic :: Scientific/Engineering :: Visualization
- Topic :: Software Development
- Topic :: Software Development :: Libraries
- Topic :: Software Development :: Libraries :: Python Modules

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



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_ncbitaxonomy_env

- Active the virtual environment

test_ncbitaxonomy_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_ncbitaxonomy_env

- Active the virtual environment

source test_ncbitaxonomy_env/bin/active


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

To install ncbitaxonomy on Windows(CMD):

py -m pip install ncbitaxonomy

To install ncbitaxonomy on Unix/macOs:

pip install ncbitaxonomy


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

Example:

pip install ncbitaxonomy==3.1.2                                                                          yanked


Please see the version list below table:

VersionReleased dateCommand
ncbitaxonomy 3.1.2.post32021-05-04T16:55:19Windows:

py -m pip install ncbitaxonomy==3.1.2.post3

Unix/macOs:

pip install ncbitaxonomy==3.1.2.post3

ncbitaxonomy 3.1.2.post22021-04-21T09:48:51Windows:

py -m pip install ncbitaxonomy==3.1.2.post2

Unix/macOs:

pip install ncbitaxonomy==3.1.2.post2

ncbitaxonomy 3.1.2.post12021-04-20T13:52:47Windows:

py -m pip install ncbitaxonomy==3.1.2.post1

Unix/macOs:

pip install ncbitaxonomy==3.1.2.post1

ncbitaxonomy 3.1.2 yanked2021-04-19T15:07:41Windows:

py -m pip install ncbitaxonomy==3.1.2                                                                          yanked

Unix/macOs:

pip install ncbitaxonomy==3.1.2                                                                          yanked


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

Download the distribution file from ncbitaxonomy-3.1.2.post3.tar.gz or the specific ncbitaxonomy version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_ncbitaxonomy_downloaded_file>

On Unix/macOs:

pip install <path_to_ncbitaxonomy_downloaded_file>


List distribution:

- ncbitaxonomy-3.1.2.tar.gz
- ncbitaxonomy-3.1.2.post1.tar.gz (python version >=3.5.2)
- ncbitaxonomy-3.1.2.post2.tar.gz (python version >=3.5.2)
- ncbitaxonomy-3.1.2.post3.tar.gz (python version >=3.5.2)


Project link: