美文网首页
记录:安装Tensorflow

记录:安装Tensorflow

作者: 饿虎嗷呜 | 来源:发表于2020-07-14 11:26 被阅读0次

    TensorFlow 安装

    今天用Anaconda安装了一把TensorFlow,记录一下。

    其实安装过程还比较简单。不过Anaconda的UI操作比较麻烦,要使用其自带的命令行工具来进行。

    image-20200714111944788.png

    一开始我选用了清华的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/pkgs/main/
    conda config --set show_channel_urls yes
    

    据说python3.6对TensorFlow的支持比较好。因此我创建了一个3.6的python环境。

    conda create -n tensorflow36 python=3.6
    

    下面就到安装TensorFlow了,但是清华的源下载TensorFlow的包速度特别慢,因此我切换到了阿里云的源进行安装。

    pip install -i http://mirrors.aliyun.com/pypi/simple/ tensorflow --trusted-host mirrors.aliyun.com
    

    需要注意,阿里这个repo是http的,需要在pip安装时选择信任该域。

    很快,TensorFlow就安装好了。

    相关文章

      网友评论

          本文标题:记录:安装Tensorflow

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