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