我想使用pip方法來安裝urllib到我的python 3.6.1,但我無法修復錯誤輸出。 錯誤似乎是這樣的: enter image description here使用Python 3.6.1和Python 2.7使用urllib的錯誤
我第一次在網上搜索,發現了一個可能的原因是Python3無法識別0,我需要在最後一位數字更改爲,因此,我試着打開文件夾中的setup.py文件。 我試圖訪問我的mac上的隱藏文件夾,按照錯誤中列出的路徑,但我無法在我的mac中找到任何pip-build-zur37k_r文件夾,我將所有隱藏的fildes都變爲可見。
我想用urllib.request裏庫和BeautifulSoup提取信息,當我運行下面的代碼:
from urllib.request import urlopen
from bs4 import BeautifulSoup
html = urlopen("https://www.pythonscraping.com/pages/page1.html")
bsObj = BeautifulSoup(html.read())
print(bsObj.h1)
的錯誤似乎是這樣的: enter image description here
的代碼應該返回我以下信息:
<h1> An Interesting Title </h1>
粘貼錯誤的文本,而不是鏈接到圖像。 – smarx
[相關](https://stackoverflow.com/questions/27835619/urllib-and-ssl-certificate-verify-failed-error)。 (也許是愚人?) –