본문 바로가기
파이썬

파이썬 How can I from bs4 import BeautifulSoup?

by º기록 2021. 1. 6.
반응형

이 코드 :

from bs4 import BeautifulSoup  

작동하지 않으며 다음 오류가 발생합니다.

raise AttributeError, "'%s' object has no attribute '%s'" % (self.__class__.__name__,attr)    
                    ^
SyntaxError: invalid syntax    

어떻게해야합니까?

 

해결 방법

 

pip 를 사용하여 설치해야합니다.

pip install beautifulsoup4

그러면 2013-08-15 기준 4.3.1 인 최신 BS4가 설치됩니다. Python 3을 지원합니다.

 

참조 페이지 https://stackoverflow.com/questions/18831380

 

 

반응형

댓글