在哪里下载Python 3模块

时间:2016-05-21 07:19:53

标签: python-3.x module web-scraping

我正在向"Automate the boring stuff with Python"学习,在Chapter 11 - Web Scraping中,它从四个模块开始:

“Webbroser, 要求, 美丽的汤, 硒“。

我尝试了很多从Pypi下载这些模块,但我找不到它们。

请您告诉我从哪里拿到它们,谢谢!

1 个答案:

答案 0 :(得分:2)

如果“Webbroser”是指webbrowser,那么它就在标准库中。

其他人有PyPi页面:

您也可以使用pip安装它。

Linux的:

pip install requests beautifulsoup4 selenium

视窗:

python -m pip install requests beautifulsoup4 selenium