You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install miniconda using the previous repository (EDA), and create a environment with the following command:
conda create --name hexagonal-arch python=3.11
Activate the environment with the following command:
conda activate hexagonal-arch
you should see the name of the environment in the terminal, something like this:
(hexagonal-arch) $
install poetry with pip
pip install poetry
and run the following command to install the dependencies:
poetry install
Resume of poetry commands
poetry add <package-name># Add a package to the project.
poetry remove <package-name># Remove a package from the project.
poetry install # Install the project dependencies.
poetry update # Update the project dependencies.
poetry show # Show information about the project dependencies.