我正在使用python 3,但我的计算机上也有python 2,所以我一直都在 使用pip3安装我的所有模块。我不断收到属性错误。
Traceback (most recent call last):
File "/home/ro/autoblg.py", line 3, in <module>
htmlfile = urllib.urlopen("http://www.dailymail.co.uk/home/index.html")
AttributeError: 'module' object has no attribute 'urlopen'
这是我写的最后一段代码的代码
import urllib
htmlfile = urllib.urlopen("http://www.dailymail.co.uk/home/index.html")
htmltext = htmlfile.read()
print(htmltext)
它一直在使用我已安装的其他模块。