sudo bash -c 'cat > /etc/apt/sources.list << EOF
deb http://mirrors.aliyun.com/debian/ bookworm main non-free-firmware non-free contrib
deb http://mirrors.aliyun.com/debian-security/ bookworm-security main non-free-firmware non-free contrib
deb http://mirrors.aliyun.com/debian/ bookworm-updates main non-free-firmware non-free contrib
deb http://mirrors.aliyun.com/debian/ bookworm-backports main non-free-firmware non-free contrib
EOF'
sudo apt update
sudo apt install python3 python3-pip python3-venv
# 建议使用虚拟环境避免污染系统环境
python3 -m venv smth_scraper_env
source smth_scraper_env/bin/activate
# 安装 requests 和 beautifulsoup4
pip install requests beautifulsoup4