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

How to install iScore via python pip




iScore - Scoring protein-protein interface using RWGK and SVM, it belongs to Classifiers:

- Development Status :: 2 - Pre-Alpha
- Topic :: Scientific/Engineering :: Bio-Informatics

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



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_iScore_env

- Active the virtual environment

test_iScore_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_iScore_env

- Active the virtual environment

source test_iScore_env/bin/active


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

To install iScore on Windows(CMD):

py -m pip install iScore

To install iScore on Unix/macOs:

pip install iScore


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

Example:

pip install iScore==0.1.2


Please see the version list below table:

VersionReleased dateCommand
iScore 0.3.52022-06-23T14:45:36Windows:

py -m pip install iScore==0.3.5

Unix/macOs:

pip install iScore==0.3.5

iScore 0.3.42020-02-10T14:33:52Windows:

py -m pip install iScore==0.3.4

Unix/macOs:

pip install iScore==0.3.4

iScore 0.3.32020-02-10T14:30:56Windows:

py -m pip install iScore==0.3.3

Unix/macOs:

pip install iScore==0.3.3

iScore 0.3.22020-02-10T13:44:41Windows:

py -m pip install iScore==0.3.2

Unix/macOs:

pip install iScore==0.3.2

iScore 0.3.12020-02-10T12:57:51Windows:

py -m pip install iScore==0.3.1

Unix/macOs:

pip install iScore==0.3.1

iScore 0.3.02020-02-07T08:41:50Windows:

py -m pip install iScore==0.3.0

Unix/macOs:

pip install iScore==0.3.0

iScore 0.1.32019-08-23T14:16:43Windows:

py -m pip install iScore==0.1.3

Unix/macOs:

pip install iScore==0.1.3

iScore 0.1.22019-08-23T11:39:56Windows:

py -m pip install iScore==0.1.2

Unix/macOs:

pip install iScore==0.1.2


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_iScore_downloaded_file>

On Unix/macOs:

pip install <path_to_iScore_downloaded_file>


List distribution:

- iScore-0.1.2-py3-none-any.whl
- iScore-0.1.2.tar.gz
- iScore-0.1.3-py3-none-any.whl
- iScore-0.1.3.tar.gz
- iScore-0.3.0-py3-none-any.whl
- iScore-0.3.0.tar.gz
- iScore-0.3.1-py3-none-any.whl
- iScore-0.3.1.tar.gz
- iScore-0.3.2-py3-none-any.whl
- iScore-0.3.2.tar.gz
- iScore-0.3.3-py3-none-any.whl
- iScore-0.3.3.tar.gz
- iScore-0.3.4-py3-none-any.whl
- iScore-0.3.4.tar.gz
- iScore-0.3.5-py3-none-any.whl
- iScore-0.3.5.tar.gz


Project link:

- Homepage