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

How to install pmapper via python pip




pmapper - pmapper: 3D pharmacophore hashes and fingerprints, it belongs to Classifiers:

- Topic :: Scientific/Engineering :: Bio-Informatics
- Topic :: Scientific/Engineering :: Chemistry

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



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_pmapper_env

- Active the virtual environment

test_pmapper_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_pmapper_env

- Active the virtual environment

source test_pmapper_env/bin/active


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

To install pmapper on Windows(CMD):

py -m pip install pmapper

To install pmapper on Unix/macOs:

pip install pmapper


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

Example:

pip install pmapper==0.2


Please see the version list below table:

VersionReleased dateCommand
pmapper 1.0.02022-05-18T10:02:53Windows:

py -m pip install pmapper==1.0.0

Unix/macOs:

pip install pmapper==1.0.0

pmapper 0.4.12021-11-09T11:05:25Windows:

py -m pip install pmapper==0.4.1

Unix/macOs:

pip install pmapper==0.4.1

pmapper 0.4.02020-02-28T19:59:15Windows:

py -m pip install pmapper==0.4.0

Unix/macOs:

pip install pmapper==0.4.0

pmapper 0.3.32020-02-21T08:00:25Windows:

py -m pip install pmapper==0.3.3

Unix/macOs:

pip install pmapper==0.3.3

pmapper 0.3.22019-11-28T21:08:36Windows:

py -m pip install pmapper==0.3.2

Unix/macOs:

pip install pmapper==0.3.2

pmapper 0.3.12019-11-02T10:38:28Windows:

py -m pip install pmapper==0.3.1

Unix/macOs:

pip install pmapper==0.3.1

pmapper 0.32019-11-02T10:33:58Windows:

py -m pip install pmapper==0.3

Unix/macOs:

pip install pmapper==0.3

pmapper 0.22019-08-21T14:36:40Windows:

py -m pip install pmapper==0.2

Unix/macOs:

pip install pmapper==0.2


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pmapper_downloaded_file>

On Unix/macOs:

pip install <path_to_pmapper_downloaded_file>


List distribution:


Project link:

- Homepage