python:beautifulsoup

文書の過去の版を表示しています。


BeautifulSoup のインストール

Python バージョン確認

$ python -VV
Python 3.7.7 (default, Mar 13 2020, 10:23:39)
[GCC 9.2.1 20190827 (Red Hat 9.2.1-1)]

Python 仮想環境の作成

$ python -m venv py3_scraping

Python 仮想環境の有効化

$ . py3_scraping/bin/activate
(py3_scraping) $

Python 仮想環境の pip を更新

(py3_scraping) $ python -m pip install --upgrade pip
Collecting pip
  Downloading https://files.pythonhosted.org/packages/54/2e/df11ea7e23e7e761d484ed3740285a34e38548cf2bad2bed3dd5768ec8b9/pip-20.1-py2.py3-none-any.whl (1.5MB)
     |████████████████████████████████| 1.5MB 2.0MB/s
Installing collected packages: pip
  Found existing installation: pip 19.1.1
    Uninstalling pip-19.1.1:
      Successfully uninstalled pip-19.1.1
Successfully installed pip-20.1

BeautifulSoup をインストールするには、以下のコマンドを実行する。

$ pip install beautifulsoup4

ダウンロードが開始されてインストールされる。

Collecting beautifulsoup4
  Downloading beautifulsoup4-4.9.0-py3-none-any.whl (109 kB)
     |████████████████████████████████| 109 kB 1.9 MB/s
Requirement already satisfied: soupsieve>1.2 in ./py3_scraping/lib/python3.7/site-packages (from beautifulsoup4) (2.0)
Could not build wheels for soupsieve, since package 'wheel' is not installed.
Installing collected packages: beautifulsoup4
Successfully installed beautifulsoup4-4.9.0
  • python/beautifulsoup.1588115098.txt.gz
  • 最終更新: 2020/04/29 08:04
  • by ともやん