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

How to install prolif via python pip




prolif - Protein-Ligand Interaction Fingerprints, it belongs to Classifiers:

- Development Status :: 4 - Beta
- Intended Audience :: Science/Research
- License :: OSI Approved :: Apache Software License
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Bio-Informatics
- Topic :: Scientific/Engineering :: Chemistry

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



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_prolif_env

- Active the virtual environment

test_prolif_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_prolif_env

- Active the virtual environment

source test_prolif_env/bin/active


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

To install prolif on Windows(CMD):

py -m pip install prolif

To install prolif on Unix/macOs:

pip install prolif


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

Example:

pip install prolif==0.1


Please see the version list below table:

VersionReleased dateCommand
prolif 1.0.02022-06-07T21:33:05Windows:

py -m pip install prolif==1.0.0

Unix/macOs:

pip install prolif==1.0.0

prolif 0.2.02018-04-30T18:16:06Windows:

py -m pip install prolif==0.2.0

Unix/macOs:

pip install prolif==0.2.0

prolif 0.1.172018-04-30T00:23:53Windows:

py -m pip install prolif==0.1.17

Unix/macOs:

pip install prolif==0.1.17

prolif 0.1.162018-04-20T18:28:21Windows:

py -m pip install prolif==0.1.16

Unix/macOs:

pip install prolif==0.1.16

prolif 0.1.152018-04-19T16:55:56Windows:

py -m pip install prolif==0.1.15

Unix/macOs:

pip install prolif==0.1.15

prolif 0.1.142018-04-19T15:49:39Windows:

py -m pip install prolif==0.1.14

Unix/macOs:

pip install prolif==0.1.14

prolif 0.1.132018-04-17T23:20:58Windows:

py -m pip install prolif==0.1.13

Unix/macOs:

pip install prolif==0.1.13

prolif 0.1.122018-04-17T21:43:58Windows:

py -m pip install prolif==0.1.12

Unix/macOs:

pip install prolif==0.1.12

prolif 0.1.112018-04-17T20:42:47Windows:

py -m pip install prolif==0.1.11

Unix/macOs:

pip install prolif==0.1.11

prolif 0.1.22018-04-30T17:40:16Windows:

py -m pip install prolif==0.1.2

Unix/macOs:

pip install prolif==0.1.2

prolif 0.1.12018-04-17T20:39:45Windows:

py -m pip install prolif==0.1.1

Unix/macOs:

pip install prolif==0.1.1

prolif 0.12018-04-17T20:31:44Windows:

py -m pip install prolif==0.1

Unix/macOs:

pip install prolif==0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_prolif_downloaded_file>

On Unix/macOs:

pip install <path_to_prolif_downloaded_file>


List distribution:


Project link:

- Homepage
- Discussions
- Documentation
- Issues