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

How to install icgc-survival via python pip




icgc-survival - A framework for survival prediction and analysis of ICGC datasets, it belongs to Classifiers:

- Topic :: Software Development :: Build Tools

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



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_icgc-survival_env

- Active the virtual environment

test_icgc-survival_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_icgc-survival_env

- Active the virtual environment

source test_icgc-survival_env/bin/active


Step 2: OK, now, let flow below content to start the installation icgc-survival

To install icgc-survival on Windows(CMD):

py -m pip install icgc-survival

To install icgc-survival on Unix/macOs:

pip install icgc-survival


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

Example:

pip install icgc-survival==0.1


Please see the version list below table:

VersionReleased dateCommand
icgc-survival 0.2.32019-10-24T14:31:05Windows:

py -m pip install icgc-survival==0.2.3

Unix/macOs:

pip install icgc-survival==0.2.3

icgc-survival 0.2.22019-10-14T16:55:58Windows:

py -m pip install icgc-survival==0.2.2

Unix/macOs:

pip install icgc-survival==0.2.2

icgc-survival 0.2.12019-10-03T19:17:11Windows:

py -m pip install icgc-survival==0.2.1

Unix/macOs:

pip install icgc-survival==0.2.1

icgc-survival 0.22019-10-03T18:36:24Windows:

py -m pip install icgc-survival==0.2

Unix/macOs:

pip install icgc-survival==0.2

icgc-survival 0.12019-09-17T09:30:47Windows:

py -m pip install icgc-survival==0.1

Unix/macOs:

pip install icgc-survival==0.1


Step 4: Otherwise, you can install icgc-survival from local archives:

Download the distribution file from icgc_survival-0.2.3.tar.gz or the specific icgc-survival version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_icgc-survival_downloaded_file>

On Unix/macOs:

pip install <path_to_icgc-survival_downloaded_file>


List distribution:

- icgc_survival-0.1.tar.gz
- icgc_survival-0.2.tar.gz
- icgc_survival-0.2.1.tar.gz
- icgc_survival-0.2.2-py3-none-any.whl
- icgc_survival-0.2.2.tar.gz
- icgc_survival-0.2.3-py3-none-any.whl
- icgc_survival-0.2.3.tar.gz


Project link:

- Homepage
- Download