Skip to main content

Using Conda to manage Python virtual environment.

  1. Create a new environment
conda create --name thu-helper python=3.10
  1. Activate the environment
conda activate thu-helper
  1. install packages
pip install -r requirements.txt