0

I installed tensorflow 2.0 and tensorflow_dataset in a Python 3 environment.

then when i try to import tensorflow_datasets,

import tensorflow_datasets as tfds

this error appears:

enter image description here

enter image description here

enter image description here

I tried to install again tensorflow-dataser from Jupyter and not from prompt, and this error appears: enter image description here

2 Answers2

0

I think your cuDNN DLL is not in %PATH% environment variable can you check it? If not you have to add cuda\bin subdirectory to get Windows to find the DLL :)

Eshan Agarwal
  • 102
  • 1
  • 7
  • sorry, I'm a little new in Python and I don't know how to check that. I don't know how add `cuda\bin` :( – Lucas Tossolini May 06 '20 at 15:32
  • Don't worry just google it like I found [this](https://towardsdatascience.com/installing-tensorflow-with-cuda-cudnn-and-gpu-support-on-windows-10-60693e46e781), follow these steps it explains all you need, its long blog and in section 5.3 explains how to check if you have environmental paths setup. :) – Eshan Agarwal May 06 '20 at 16:46
0

I was finally able to solve the issue.

I did this by downloading and installing openssl from openssl (thanks to Udemy technical assistant)

but then, failed to load MNIST, so I should have updated jupyter and ipywidget with

conda install -c conda-forge ipywidgets
jupyter nbextension enable --py widgetsnbextension

(the solution is from here)