This guide will help you set up and run the project step by step on a Linux environment.
First, create a Python virtual environment in the project directory:
python -m venv .venv
Activate your virtual environment:
source ./.venv/bin/activate
Then install all required packages:
pip install -r requirements.txt
Install the necessary browser binaries for Playwright:
playwright install
Finally, start the program:
python -m thu_learn_downloader.main