inflearn logo
Khóa học

Khóa học

Chia sẻ kiến thức

Bài viết của senakim3855

senakim3855 senakim3855

@senakim3855

Số lượng đánh giá đã viết
-
Xếp hạng trung bình
-

Bài viết 1

Hỏi & Đáp

bs4에러

import requests from bs4 import BeautifulSoup response = requests.get("https://www.naver.com") html = response.text soup = BeautifulSoup(html, 'html.parser') word = soup.select_one('#NM_set_home_btn') print(word.text)import requests from bs4 import BeautifulSoup response = requests.get("https://www.naver.com") html = response.text soup = BeautifulSoup(html, 'html.parser') word = soup.select_one('#NM_set_home_btn') print(word.text) 이라고 코드를 작성했는데요. ModuleNotFoundError: No module named 'bs4' 이라고 저도 뜨네요 ㅠㅠ 파이썬도 하나만 설치되어 있는데 계속 이런 오류가 뜨고 있어요 ㅠ

Lượt thích
0
Số bình luận
2
Lượt xem
2362