0
我對Python使用Visual Studio
。我想安裝Beatifulsoup網絡報廢。安裝爲解釋器的Python 3.4
。Visual Studio Python的美化工具
我安裝了BS,但不起作用。請幫助我,以便在Visual Studio
中使用Beatifulsoup
。
我在代碼下面執行,得到「no module named bs4」錯誤。謝謝
from urllib.request import urlopen
from bs4 import BeautifulSoup
html = urlopen("http://www.pythonscraping.com/pages/page1.html")
bsObj = BeautifulSoup(html.read())
print(bsObj.h1)
非常感謝。 –