1. 程式人生 > >錯誤AttributeError: module 'urllib' has no attribute 'urlretrieve'

錯誤AttributeError: module 'urllib' has no attribute 'urlretrieve'

使用TensorFlow從Wikipedia資料構建Word嵌入模型時報錯如下:

AttributeError: module 'urllib' has no attribute 'urlretrieve'

查了查原因,是python3中使用urlretrieve時應該加.request,即:

urllib.urlretrieve改為urllib.request.urlretrieve即可解決