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

How to install sri-tpot via python pip




sri-tpot - SRI Fork of Tree-based Pipeline Optimization Tool, it belongs to Classifiers:

- License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
- Topic :: Scientific/Engineering :: Artificial Intelligence

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



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_sri-tpot_env

- Active the virtual environment

test_sri-tpot_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_sri-tpot_env

- Active the virtual environment

source test_sri-tpot_env/bin/active


Step 2: OK, now, let flow below content to start the installation sri-tpot

To install sri-tpot on Windows(CMD):

py -m pip install sri-tpot

To install sri-tpot on Unix/macOs:

pip install sri-tpot


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

Example:

pip install sri-tpot==1.2.1


Please see the version list below table:

VersionReleased dateCommand
sri-tpot 1.3.02020-06-30T22:22:03Windows:

py -m pip install sri-tpot==1.3.0

Unix/macOs:

pip install sri-tpot==1.3.0

sri-tpot 1.2.92020-06-03T00:26:43Windows:

py -m pip install sri-tpot==1.2.9

Unix/macOs:

pip install sri-tpot==1.2.9

sri-tpot 1.2.82020-04-08T23:02:58Windows:

py -m pip install sri-tpot==1.2.8

Unix/macOs:

pip install sri-tpot==1.2.8

sri-tpot 1.2.72020-04-01T18:31:03Windows:

py -m pip install sri-tpot==1.2.7

Unix/macOs:

pip install sri-tpot==1.2.7

sri-tpot 1.2.62020-02-12T22:10:54Windows:

py -m pip install sri-tpot==1.2.6

Unix/macOs:

pip install sri-tpot==1.2.6

sri-tpot 1.2.52020-02-05T22:34:59Windows:

py -m pip install sri-tpot==1.2.5

Unix/macOs:

pip install sri-tpot==1.2.5

sri-tpot 1.2.42020-01-30T01:11:00Windows:

py -m pip install sri-tpot==1.2.4

Unix/macOs:

pip install sri-tpot==1.2.4

sri-tpot 1.2.32019-07-09T01:24:33Windows:

py -m pip install sri-tpot==1.2.3

Unix/macOs:

pip install sri-tpot==1.2.3

sri-tpot 1.2.22019-05-31T00:41:08Windows:

py -m pip install sri-tpot==1.2.2

Unix/macOs:

pip install sri-tpot==1.2.2

sri-tpot 1.2.12019-04-04T21:11:51Windows:

py -m pip install sri-tpot==1.2.1

Unix/macOs:

pip install sri-tpot==1.2.1


Step 4: Otherwise, you can install sri-tpot from local archives:

Download the distribution file from sri_tpot-1.3.0.tar.gz or the specific sri-tpot version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_sri-tpot_downloaded_file>

On Unix/macOs:

pip install <path_to_sri-tpot_downloaded_file>


List distribution:


Project link:

- Homepage