查询版本信息
-
驱动器版本:右键NVIDIA–>系统信息(点击开始菜单,搜索
dxdiag
)
-
对应tensorflow版本:
https://tensorflow.google.cn/install/source_windows?hl=en#gpu
-
对应pytorch版本:
安装Anaconda
下载网址:https://repo.anaconda.com/archive/
安装事项:
-
修改路径
-
不要勾选“Add Anaconda to the system PATH environment variable”。
-
添加上:Anaconda3、Anaconda3/Scripts、Anaconda3/Library/bin这3个文件夹的路径(用户+系统的Path,环境变量打开方式为:计算机–属性–高级系统设置–环境变量)
设置镜像源
清华镜像网址:https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/
参考:https://www.cpci.dev/anaconda-mirrors-configure/
-
生成 .condarc 文件:
conda config --set show_channel_urls yes
(C:\users\username\) -
清华源复制到 .condarc 文件
channels:
- defaults
show_channel_urls: true
default_channels:
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
- https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
custom_channels:
conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
msys2: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
bioconda: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
menpo: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
pytorch: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
pytorch-lts: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
simpleitk: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud
ssl_verify: false
# 命令行
conda clean -i -
不走镜像、代理设置
channels:
- defaults
show_channel_urls: true
proxy_servers:
http: 127.0.0.1:7890
https: 127.0.0.1:7890
ssl_verify: false
conda安装tensorflow
conda create -n tf python=3.6 |
高版本安装
需要 pip安装 tensorflow:https://tensorflow.google.cn/install/pip?hl=en#windows-native
conda install -c conda-forge cudatoolkit=11.2 cudnn=8.1.0 |
conda安装pytorch
选择版本安装:https://pytorch.org/get-started/locally/
conda create -n pytorch python=3.8 |
CondaSSLError: OpenSSL appears to be unavailable on this machine. OpenSSL is required to download and install packages. 解决的方法
-
到你的anaconda的安装目录位置:比如
-
D:\ProgramData\Anaconda3\Library\bin
,找到如下两个DLL的文件:libcrypto-1_1-x64.dll
libssl-1_1-x64.dll -
复制到
D:\ProgramData\Anaconda3\DLLs
-
重启下shell
测试
# tf |
conda常用命令
version: |