PAT(Basic Level) Practice 1001
阿新 • • 發佈:2021-01-25
技術標籤:tensorflow深度學習機器學習
解決ubuntu18.04安裝tensflow2.4 cuda10.02版本不適配
安裝完TensorFlow後,出現版本不適配,TensorFlow2.4需要cuda11.0以上
我們決定將CUDA庫建立軟連線到/usr/lib/x86_64-linux-gnu/to the libcudart.so.11.0 file
sudo ln -s /usr/local/cuda-10.2/targets/x86_64-linux/lib/libcudart.so.10.2 /usr/lib/x86_64-linux-gnu/libcudart.so.11.0
檢視TensorFlow版本
python
import tensorflow as tf
tf.__version__