LoginSignup
3
4

More than 3 years have passed since last update.

Pythonでスクレイピング(準備)

Last updated at Posted at 2020-08-01

スクレイピングを触ってみようと思いPythonのBeautifulSoupを使ってみる。
とりあえず今回は準備から

使用するもの

・Python3.6
・BeautifulSoup4
・Anaconda

仮想環境の構築

仮想環境の構築から

conda create --name [環境名] python=[version]

実際に構築
WS000000.JPG
WS000001.JPG

色々ダウンロードされて終了

BeautifulSoupのインストール

pip install beutifulsoup4

上記のコマンドでインストールする

WS000002.JPG
先ほど作成した仮想環境に入り、インストール
WS000003.JPG
インストールされたか下記コマンドで確認

pip list

WS000004.JPG

インストールされたことが確認できたので今回はここまで

次は実際に簡単にですが使ってみます!

Pythonでスクレイピング(データ取得)

3
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
4