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

How to install immuno-probs via python pip




immuno-probs - Create IGoR models and calculate the generation probability of V(D)J and CDR3 sequences., it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Topic :: Scientific/Engineering :: Bio-Informatics
- Topic :: Scientific/Engineering :: Information Analysis
- Topic :: Scientific/Engineering :: Medical Science Apps.

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



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_immuno-probs_env

- Active the virtual environment

test_immuno-probs_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_immuno-probs_env

- Active the virtual environment

source test_immuno-probs_env/bin/active


Step 2: OK, now, let flow below content to start the installation immuno-probs

To install immuno-probs on Windows(CMD):

py -m pip install immuno-probs

To install immuno-probs on Unix/macOs:

pip install immuno-probs


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

Example:

pip install immuno-probs==0.2.0


Please see the version list below table:

VersionReleased dateCommand
immuno-probs 0.2.12019-12-15T17:07:33Windows:

py -m pip install immuno-probs==0.2.1

Unix/macOs:

pip install immuno-probs==0.2.1

immuno-probs 0.2.02019-10-01T14:51:45Windows:

py -m pip install immuno-probs==0.2.0

Unix/macOs:

pip install immuno-probs==0.2.0


Step 4: Otherwise, you can install immuno-probs from local archives:

Download the distribution file from immuno_probs-0.2.1-py2-none-any.whl or the specific immuno-probs version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_immuno-probs_downloaded_file>

On Unix/macOs:

pip install <path_to_immuno-probs_downloaded_file>


List distribution:

- immuno_probs-0.2.0-py2-none-any.whl
- immuno_probs-0.2.1-py2-none-any.whl


Project link:

- Homepage
- Bug Reports