docs: 将python3命令修改为python
This commit is contained in:
parent
9e2d1396b8
commit
b48e4d297d
|
@ -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
|
||||
```
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue