ฉันได้ติดตั้ง BeautifulSoup โดยใช้ easy_install และพยายามเรียกใช้สคริปต์ต่อไปนี้
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 writing xml file from web1.py", line 49, in <module>
from BeautifulSoup import BeautifulSoup
ImportError: No module named BeautifulSoup
คุณช่วยกรุณา ขอบคุณ
easy_install
ให้ใช้ Python2.7 หรือ Python เวอร์ชัน inbuilt ที่มาพร้อมกับระบบปฏิบัติการที่คุณใช้อยู่หรือไม่? หากคุณไม่ได้ระบุ 2.7 ลองทำ Python2,4 หรือ Python2.6