diff --git a/README.md b/README.md index a270982..29c9ee5 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ cd MediaCrawler # 创建虚拟环境 - python3 -m venv venv + python -m venv venv # macos & linux 激活虚拟环境 source venv/bin/activate @@ -61,15 +61,15 @@ ```shell # 从配置文件中读取关键词搜索相关的帖子并爬去帖子信息与评论 - python3 main.py --platform xhs --lt qrcode --type search + python main.py --platform xhs --lt qrcode --type search # 从配置文件中读取指定的帖子ID列表获取指定帖子的信息与评论信息 - python3 main.py --platform xhs --lt qrcode --type detail + python main.py --platform xhs --lt qrcode --type detail # 打开对应APP扫二维码登录 # 其他平台爬虫使用示例, 执行下面的命令查看 - python3 main.py --help + python main.py --help ```