inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

sena.kim님의 게시글

sena.kim sena.kim

@senakim3855

수강평 작성수
-
평균평점
-

게시글 1

질문&답변

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' 이라고 저도 뜨네요 ㅠㅠ 파이썬도 하나만 설치되어 있는데 계속 이런 오류가 뜨고 있어요 ㅠ

좋아요수
0
댓글수
2
조회수
2362