Gitrepos Trending Daily Save the daily trending Github respositories Create virtual environment For Linux python3 -m venv venv For Windows python -m venv venv Activate the virtual environment For Linux source venv/bin/activate For Windows venv\Scripts\activate.bat Check if the virtual environment is activate which python it should point to the python in venv Install the required packages pip install -r requirements.txt