我正在尝试this link中的代码来由keras执行word2vec。
我在这条线上收到错误:
filename, _ = urllib.urlretrieve(url + filename, filename)
错误是:
AttributeError:模块“ urllib”没有属性“ urlretrieve”
为了解决这个问题,我安装并导入了urllib3并将其更改为:
filename, _ = urllib3.urlretrieve(url + filename, filename)
但我再次收到该错误消息:
AttributeError:模块“ urllib3”没有属性“ urlretrieve”
我该如何解决?
最佳答案
从评论部分扩展:
如文档所述,您可以像这样访问urlretrieve
urllib.request.urlretrieve
https://docs.python.org/3.4/library/urllib.request.html#urllib.request.urlretrieve
关于python - AttributeError:模块“urllib3”没有属性“urlretrieve”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49628211/