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

How to install EpiClass via python pip




EpiClass - Optimizing and predicting performance of DNA methylation biomarkers using sequence methylation density information., it belongs to Classifiers:

- Environment :: Console
- Intended Audience :: Science/Research
- License :: Public Domain
- Programming Language :: Python :: 3 :: Only
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Bio-Informatics
- Topic :: Scientific/Engineering :: Medical Science Apps.

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



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_EpiClass_env

- Active the virtual environment

test_EpiClass_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_EpiClass_env

- Active the virtual environment

source test_EpiClass_env/bin/active


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

To install EpiClass on Windows(CMD):

py -m pip install EpiClass

To install EpiClass on Unix/macOs:

pip install EpiClass


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

Example:

pip install EpiClass==2.2.1


Please see the version list below table:

VersionReleased dateCommand
EpiClass 2.2.52020-03-30T22:45:28Windows:

py -m pip install EpiClass==2.2.5

Unix/macOs:

pip install EpiClass==2.2.5

EpiClass 2.2.42020-03-30T22:31:25Windows:

py -m pip install EpiClass==2.2.4

Unix/macOs:

pip install EpiClass==2.2.4

EpiClass 2.2.32020-03-30T21:38:49Windows:

py -m pip install EpiClass==2.2.3

Unix/macOs:

pip install EpiClass==2.2.3

EpiClass 2.2.22020-03-30T21:35:15Windows:

py -m pip install EpiClass==2.2.2

Unix/macOs:

pip install EpiClass==2.2.2

EpiClass 2.2.12020-03-30T21:17:09Windows:

py -m pip install EpiClass==2.2.1

Unix/macOs:

pip install EpiClass==2.2.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_EpiClass_downloaded_file>

On Unix/macOs:

pip install <path_to_EpiClass_downloaded_file>


List distribution:

- EpiClass-2.2.1.tar.gz
- EpiClass-2.2.2.tar.gz
- EpiClass-2.2.3.tar.gz
- EpiClass-2.2.4.tar.gz
- EpiClass-2.2.5.tar.gz


Project link:

- Homepage
- Download