ImportError : BeautifulSoup이라는 모듈이 없습니다.
easy_install을 사용하여 BeautifulSoup을 설치하고 다음 스크립트를 실행하려고합니다. from BeautifulSoup import BeautifulSoup import re doc = ['<html><head><title>Page title</title></head>', '<body><p id="firstpara" align="center">This is paragraph <b>one</b>.', '<p id="secondpara" align="blah">This is paragraph <b>two</b>.', '</html>'] soup = BeautifulSoup(''.join(doc)) print soup.prettify() 하지만 왜 이런 일이 일어나는지 잘 모르겠습니다. Traceback (most recent call last): File "C:\Python27\reading and …