We use poetry
, a tool for dependency management and packaging in Python
to create a virtual environment (venv
) from which run the project. You can install poetry
following the steps described here.
Clone the repository using:
git clone https://github.com/CRIStAL-Sigma/steniq_tda_jan_2024.git
Then, simply let poetry
do all the work. Create a virtual environment and install all the current dependencies using:
poetry install
Remark for conda users:
If you have Anaconda
or Miniconda
installed please disable the auto-activation of the base environment and your conda environment using:
conda config --set auto_activate_base false
conda deactivate