python安装beautiful soup库,和requests库

来源:互联网 发布:扣扣刷钻软件手机版 编辑:程序博客网 时间:2024/06/07 16:45

查看python已有的库:help('modules')

1.安装beautifulsoup

1).下载beautiful soup

https://www.crummy.com/software/BeautifulSoup/

2).pip install beautifulsoup4

2.安装requests

1).下载requests

https://pypi.python.org/pypi/requests#downloads

2).安装

python setup.py install

0 0