Install¶
Without Users¶
Install Anaconda 3 for Python
Install PostgreSQL or your preferred database
Install Redis
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:
Install Anaconda 3 for Python
Install PostgreSQL or your preferred database
Install Redis
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]