安裝完anaconda之後,開啟Anaconda Prompt的終端進行如下操作:
1.conda create -n TF2.4 python=3.8
2.conda activate TF2.4
下面需要nvidia硬體GPU支援才能正確安裝,安裝的cudnn以及cuda可以參考https://tensorflow.google.cn/install/source_windows?hl=en每一個tensorflow支援對應的版本:
3.conda install cudatoolkit=11.0 然後輸入y
4.conda install cudnn=8.0 然後輸入 y(如果3和4報錯,說明電腦不具備安裝條件,繼續進行步驟5)
5.pip install tensorflow==2.4
6.這一步安裝時間比較長,等待即可
7.為了驗證是否安裝成功,輸入:python 進入pyhton環境8.import tensorflow as tf9.tf.__version__
10.如果顯示:2.4.0 那麼安裝成功
GPU版本安裝時候,需要考慮當前GPU顯示卡的算力,算力需要大於3.5,可以透過下面網址去查詢:https://developer.nvidia.com/zh-cn/cuda-gpus
最新評論