Pages

Monday, May 22, 2017

Tensorflow 1.1 (GPU) on Windows with cuDNN 6.0: No module named '_pywrap_tensorflow'

Short notes: if you got trouble importing tensorflow 1.1 (GPU) on Windows with cuDNN 6.0, try to use cuDNN 5.1 and ensure that the MSVC++2015 redistributable has been installed.

Reference: https://github.com/tensorflow/tensorflow/issues/7705

That's all :)

Saturday, May 13, 2017

Update Anaconda Navigator 1.5.0

I had trouble updating Anaconda Navigator from 1.5.0 to 1.5.2 in Windows 10. While there was a message indicating that the update was successful, the version remains. Gladly found the solution here: https://github.com/ContinuumIO/anaconda-issues/issues/1583 :
  1. Open command prompt
  2. Execute:
    C:¥> conda update --all --prefix <path_to_the_installed_conda>
That's all :)