你好,我正在尝试用cuda 10.1来使用tensorflow。
我已经安装了Cuda10.1和CuDNN 7.5,用于Cuda 10.1。
当启动这个命令 "nvcc -V "来检查我的安装时,我有这样的windows提示符
nvcc: NVIDIA (R) Cuda compiler driver
Built on Fri_Feb__8_19:08:26_Pacific_Standard_Time_2019
Cuda compilation tools, release 10.1, V10.1.105
但当我在jupyter notebook上导入tensorflow时,我有这样的错误
import tensorflow as tf;
Error:
ImportError: Could not find 'cudart64_100.dll'. TensorFlow requires that this DLL be installed in a directory that is named in your %PATH% environment variable. Download and install CUDA 10.0 from this URL: https://developer.nvidia.com/cuda-90-download-archive
我怎样才能使它工作呢? 感谢你的帮助。