解決ImportError: Could not find the DLL(s) ‘msvcp140_1.dll‘問題

2020-08-12 16:29:09

剛安裝好tensorflow安裝包去試試import tensorflow as ft時,出現錯誤。

錯誤原因:
ImportError: Could not find the DLL(s) ‘msvcp140_1.dll’. TensorFlow requires that these DLLs be installed in a directory that is named in your %PATH% environment variable.

解決辦法:
1、開啓這個網站
https://support.microsoft.com/zh-cn/help/2977003/the-latest-supported-visual-c-downloads

2、在這裏下載vc_redist64.exe檔案。
在这里插入图片描述
3、下載後雙擊安裝,然後重新啓動就行了。再次執行import tensorflow as tf就不會報錯了。