首页 > 代码库 > python 上手

python 上手

1.安装模块

cmd---“pip install [模块名]”

2.爬虫常用模块

requests

beautifulsoup4

3.检查已安装的模块

cmd ---"pip list"

安装模块 "pip install [模块]"

现实过期模块 "pip list --outdated"

更新指定模块 "pip install --upgrade [更新模块]"

python 上手