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

How to install tsam via python pip




tsam - Time series aggregation module (tsam) to create typical periods, it belongs to Classifiers:

- Intended Audience :: End Users/Desktop

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



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_tsam_env

- Active the virtual environment

test_tsam_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_tsam_env

- Active the virtual environment

source test_tsam_env/bin/active


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

To install tsam on Windows(CMD):

py -m pip install tsam

To install tsam on Unix/macOs:

pip install tsam


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

Example:

pip install tsam==0.9.6


Please see the version list below table:

VersionReleased dateCommand
tsam 2.1.02022-05-29T18:27:14Windows:

py -m pip install tsam==2.1.0

Unix/macOs:

pip install tsam==2.1.0

tsam 2.0.12022-04-19T07:16:35Windows:

py -m pip install tsam==2.0.1

Unix/macOs:

pip install tsam==2.0.1

tsam 2.0.02021-11-26T10:57:01Windows:

py -m pip install tsam==2.0.0

Unix/macOs:

pip install tsam==2.0.0

tsam 1.1.22021-09-23T14:18:59Windows:

py -m pip install tsam==1.1.2

Unix/macOs:

pip install tsam==1.1.2

tsam 1.1.12021-08-10T11:44:43Windows:

py -m pip install tsam==1.1.1

Unix/macOs:

pip install tsam==1.1.1

tsam 1.1.02020-03-30T12:16:56Windows:

py -m pip install tsam==1.1.0

Unix/macOs:

pip install tsam==1.1.0

tsam 1.0.52019-07-04T14:52:06Windows:

py -m pip install tsam==1.0.5

Unix/macOs:

pip install tsam==1.0.5

tsam 1.0.42019-06-14T16:59:06Windows:

py -m pip install tsam==1.0.4

Unix/macOs:

pip install tsam==1.0.4

tsam 1.0.32019-03-14T16:06:18Windows:

py -m pip install tsam==1.0.3

Unix/macOs:

pip install tsam==1.0.3

tsam 1.0.22019-01-24T11:07:41Windows:

py -m pip install tsam==1.0.2

Unix/macOs:

pip install tsam==1.0.2

tsam 1.0.12019-01-23T15:55:51Windows:

py -m pip install tsam==1.0.1

Unix/macOs:

pip install tsam==1.0.1

tsam 1.0.02018-09-10T15:51:20Windows:

py -m pip install tsam==1.0.0

Unix/macOs:

pip install tsam==1.0.0

tsam 0.9.92018-05-22T19:12:34Windows:

py -m pip install tsam==0.9.9

Unix/macOs:

pip install tsam==0.9.9

tsam 0.9.82018-05-22T18:59:35Windows:

py -m pip install tsam==0.9.8

Unix/macOs:

pip install tsam==0.9.8

tsam 0.9.72018-05-22T18:53:31Windows:

py -m pip install tsam==0.9.7

Unix/macOs:

pip install tsam==0.9.7

tsam 0.9.62018-05-22T18:53:30Windows:

py -m pip install tsam==0.9.6

Unix/macOs:

pip install tsam==0.9.6


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_tsam_downloaded_file>

On Unix/macOs:

pip install <path_to_tsam_downloaded_file>


List distribution:


Project link:

- Homepage