美文网首页
ubuntu20.0.4 LTS安装TensorFlow

ubuntu20.0.4 LTS安装TensorFlow

作者: 都灵的夏天_ | 来源:发表于2020-10-06 15:45 被阅读0次

安装 Anaconda

清华源Anaconda
下载页面
下载合适安装包
打开terminal 找到文件位置安装

bash XXX.sh

打开python 查看是否有anaconda标记 有则表示安装完成
没有则执行

sudo gedit ~/.bashrc
#根据你安装的目录,在文件末尾添加一行
export PATH="/home/xxx/anaconda3/bin:$PATH""
#更新bashrc
source ~/.bashrc

安装TensorFlow

1、创建虚拟环境:
conda create -n tf

2、激活虚拟环境:

source activate tf

如果要退出:输入

source deactivate tf

# To activate this environment, use
  conda activate tf
#To deactivate an active environment, use
   conda deactivate

conda切换国内源

添加清华源

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

设置搜索时显示通道地址

conda config --set show_channel_urls yes

添加中科大源

conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/
conda config --set show_channel_urls yes

安装TensorFlow

conda install tensorflow

安装jupyter

conda install jupyter notebook

打开jupyter

jupyter notebook

相关文章

网友评论

      本文标题:ubuntu20.0.4 LTS安装TensorFlow

      本文链接:https://www.haomeiwen.com/subject/smeauktx.html