Conda
Conda⚓︎
-
For a lightweight experience, install
miniconda
. This can be done through -
Then initialise conda:
-
Create your environment:
conda create -y -n my_project conda activate my_project conda config --set auto_activate_base false # (1) conda install -y python=3.10 # (2) pip install --upgrade pip
- Stops automatically activating the
base
env when opening the terminal. - This project also supports 3.11 - 3.13 if you want to use those instead.
- Stops automatically activating the
-
And finally, install the requirements: