[python] Requests、BeautifulSoup4 網路爬蟲套件安裝教學

Requests 
  -網路資源(URLs)擷取套件
BeautifulSoup4
  -HTML剖析套件


搜尋cmd,開啟命令提示字元(cmd)

輸入pip
pip
(若windows無法讀取pip則以py -3 -m pip代替)
py -3 -m pip
(在命令提示字元內使用右鍵點擊一次可以貼上)


pip install requests
或是
py -3 -m pip install requests


pip install BeautifulSoup4
或是
py -3 -m pip install BeautifulSoup4

輸入python確認安裝是否成功
python
(成功請跳至圖片後)若輸入python無法辨識則輸入
py -3 -m python
他會告訴你python.exe的路徑,切換到此路徑再次輸入
例如我的是:C:\Users\wusnn\AppData\Local\Programs\Python\Python37-32\python.exe
則:
cd C:\Users\wusnn\AppData\Local\Programs\Python\Python37-32\
python
(按住左鍵選取再按Ctrl+C可以複製,右鍵單點一下可以貼上)


import requests
from bs4 import BeautifulSoup

若輸入這兩行都沒有出現任何問題就代表安裝成功了



留言