cuda=10.0
cudann=7.4
这两个要单独从官网下载安装,不然大概率出问题
conda install tensorflow-gpu==1.15.0
#或者:
pip install tensorflow-gpu==2.2.0
如果不能挂代理,需要换源的话:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/pro/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2/
conda config --set show_channel_urls yes
#或者
pip install tensorflow-gpu==2.2.0 -i https://pypi.tuna.tsinghua.edu.cn/simple
附:TensorFlow各个版本的参考图,取自参考博客?
附:TensorFlow与keras版本的对应关系,取自参考文章
?
参考博客:
简单利用conda安装tensorflow-gpu=2.2.0_爱听许嵩歌的博客-CSDN博客_conda安装tensorflow-gpu2.2
tensorflow和keras版本对应关系 - 知乎
?
|