侧边栏壁纸
博主头像
天马行空 博主等级

凡是过往,皆为序章

  • 累计撰写 632 篇文章
  • 累计创建 11 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

阿里云安装水木爬虫

sortie
2026-05-11 / 0 评论 / 0 点赞 / 6 阅读 / 0 字
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

博主关闭了所有页面的评论