Skip to content Skip to sidebar Skip to footer

How To Solve Tensor Flow Cpu Dll Not Found Error

I have install tensorflow v2.1.0 with python version 3.6.6 and pip version 20.0.2. When i try to import tensorflow i got below error. C:\Users\Dexter>python Python 3.6.6 (v3.6.6

Solution 1:

As per installation instructions for Windows, Tensorflow 2.1.0 requires Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017, and 2019 - which is what you are (partially) missing. Moreover, starting with the TensorFlow 2.1.0 version, the msvcp140_1.dll file is required from this package (which may not be provided from older redistributable packages).

That's why you're getting the error. Install the missing packages following these instructions. In essence, grab the 2015, 2017 and 2019 Redistributable, all in single package, available from here.

Solution 2:

Try to install Anaconda make a virtual env. and it will install automatically all the depedencies of the libraries that you want!

Post a Comment for "How To Solve Tensor Flow Cpu Dll Not Found Error"