Data Analytics - Course Assignment N.16: Dating Profile
If you are using conda, you can create an environment and install dependencies from requirements.txt.
conda env create -f environment.ymlconda activate da-recIf you are using pip, it's recommended to create a virtual environment first.
python3 -m venv my_env # For macOS/Linux
source my_env/bin/activate # For macOS/Linux
python -m venv my_env # For Windows
my_env\Scripts\activate # For Windowspip install <package_name>