0
点赞
收藏
分享

微信扫一扫

【Ubuntu】使用WSL安装Ubuntu

看山远兮 2024-02-24 阅读 42

Anaconda下载

进入官网下载
https://www.anaconda.com/download
也可以通过清华的映像站下载:
https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
在这里插入图片描述
我这里下载的是3.4.20版本。下载好就可以安装默认安装就行。
在这里插入图片描述
打开Anaconda Prompt修改成国内镜像

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

conda config --set show_channel_urls yes

下载普通版TensorFlow

conda install tensorflow

打开jupyter notebook
在这里插入图片描述
在这里插入图片描述

创建一个conda root然后输入代码显示版本号即可。

import tensorflow as tf
tf.__version__

在这里插入图片描述

举报

相关推荐

0 条评论