작성
·
2.2K
답변 2
1
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' 이라고 저도 뜨네요 ㅠㅠ
파이썬도 하나만 설치되어 있는데 계속 이런 오류가 뜨고 있어요 ㅠ
1
안녕하세요.
코딩을 가장 쉽게 알려주는 크리에이터, 스타트코딩입니다.
해당 오류는 컴퓨터에 파이썬이 여러개 설치되어있을 확률이 높습니다.
vscode 화면 왼쪽 하단에 파이썬 실행 버전 선택 후 다른 버전으로 바꿔 보세요~ㅎㅎ
감사합니다.
안녕하세요
같은 오류가 떠서 알려주신대로 다른 버전으로 바꾸어도 계속 같은 에러가 뜹니다
버젼이 낮은거라서 그런줄 알고 새로 다운 받아서 버전을 전환해도 마찬가지라서 진행이 안되는데 어떻게 해야 할까요