Install Shapelets Core
It is very simple to set up your development environment and install Shapelets Core.
Just install the Python library shapelets-core
:
pip install shapelets-core
tip
We recommend to install shapelets-core
in a virtual environment to avoid any system conflicts.
-
Create a directory called
shapelets
:mkdir shapelets
-
Navigate to said directory:
cd shapelets
-
Create a virtual environment:
pyhton -m venv .venv
-
Activate your newly created virtual environment:
# Linux and macOS
source ./venv/bin/activate
# Windows CMD
.venv\Scripts\activate.bat
# Windows PowerShell
.venv\Scripts\Activate.ps1 -
Install Shapelets Core:
pip install shapelets-core
info
shapelets-core
installation via conda
is still in development