Skip to main content

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.

  1. Create a directory called shapelets:

    mkdir shapelets
  2. Navigate to said directory:

    cd shapelets
  3. Create a virtual environment:

    pyhton -m venv .venv
  4. 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
  5. Install Shapelets Core:

    pip install shapelets-core 
info

shapelets-core installation via conda is still in development