DLL加载失败:找不到指定的模块,在python中导入tensorflow_datasets

时间:2020-05-06 14:02:38

标签: python tensorflow ssl import tensorflow-datasets

我在Python 3环境中安装了tensorflow 2.0和tensorflow_dataset。

然后当我尝试导入tensorflow_datasets时

import tensorflow_datasets as tfds

出现此错误:

enter image description here

enter image description here

enter image description here

我尝试从Jupyter而不是从提示符再次安装tensorflow-dataser,并且出现此错误: enter image description here

2 个答案:

答案 0 :(得分:0)

我认为您的cuDNN DLL不在%PATH% environment variable中,您可以检查吗? 如果不是,则必须添加cuda\bin子目录才能使Windows查找DLL:)

答案 1 :(得分:0)

我终于能够解决这个问题。

我通过从以下位置下载并安装openssl来做到这一点 openssl (感谢Udemy技术助理)

但是随后,无法加载MNIST,因此我应该使用

更新jupyter和ipywidget。
conda install -c conda-forge ipywidgets
jupyter nbextension enable --py widgetsnbextension

the solution is from here