在命令行端(Anaconda prompt)中运行新建环境命令
添加清华源:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/win-64/
第一步 conda create -n tensorflow几点几(环境名字) python=3.8
第二步 activate tensorflow几点几
第三步 pip install tensorflow-gpu==2.3.0
第四步 在tensoflow终端 conda install cudatoolkit=10.1
conda install cudnn=7.6
第四步失败或者到pycharm里面搜索添加cudatoolkit和cudnn指定版本安装
----------------------------------------------------------------------------------------------------
rtx3060显卡最低cuda11.1,tensorflow2.4.1
在命令行端(Anaconda prompt)中运行新建环境命令
第一步 conda create -n tensorflow几点几(环境名字) python=3.8
第二步 activate tensorflow几点几
第三步 pip install tensorflow-gpu==2.4.1
第四步 在tensoflow终端 conda install cudatoolkit=11.1
conda install cudnn=8.1
第四步失败或者到pycharm里面搜索添加cudatoolkit和cudnn指定版本安装
如果出现错误:PackagesNotFoundError: The following packages are not available from current channels:
- cudatoolkit=11.1
解决办法:
conda config --add channels conda-forge
设置超时时间:pip --default-timeout=1000 install requests