Use the package manager pip to install libraries used in the project specified in the requirements.txt file.
pip install requirements.txt
You can run the individual modules like so:
python -m logic.destinations.destination_scraping
If you want to create a virtual environment for python, run the following command:
python -m venv .venv
This is useful for separating your global python configuration
Then activate the venv
on your shell by running:
source .venv/bin/activate