Install

Without Users

  1. Install Anaconda 3 for Python

  2. Install PostgreSQL or your preferred database

  3. Install Redis

  4. Install msdss-models-api via pip or through a conda environment

conda create -n msdss-models-api python=3.8
conda activate msdss-models-api
pip install msdss-models-api[postgresql]

Note

Optionally, you can also install other databases supported by sqlalchemy:

pip install msdss-models-api[mysql]
pip install msdss-models-api[sqlite]

With Users

This package can be installed with user authentication support:

  1. Install Anaconda 3 for Python

  2. Install PostgreSQL or your preferred database

  3. Install Redis

  4. Install msdss-models-api via pip or through a conda environment

conda create -n msdss-models-api python=3.8
conda activate msdss-models-api
pip install msdss-models-api[users-postgresql]

Note

Optionally, you can also install other databases supported by sqlalchemy:

pip install msdss-models-api[users-mysql]
pip install msdss-models-api[users-sqlite]