If you are using conda, you can create an environment and install dependencies from requirements.txt.
conda env create -f environment.ymlconda activate DA_envIf you are using pip, it's recommended to create a virtual environment first.
python3 -m venv my_env
source DA_env/bin/activatepython -m venv my_env
DA_env\Scripts\activateOnce the virtual environment is activated, install the dependencies:
pip install -r requirements.txt