美文网首页LinuxPytorch
Linux安装tensorflow

Linux安装tensorflow

作者: 代码的路 | 来源:发表于2022-08-10 10:21 被阅读0次

    原文链接

    安装TensorFlow2:

    pip install tensorflow==2.0.0-alpha0
    

    安装TensorFlow1:

    pip install --upgrade tensorflow-gpu==1.11.0
    

    若要加速,可以考虑升级pip后换成国内清华源:

    pip install --user --upgrade pip
    pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
    

    依次输入以下命令查看是否安装成功:

    python
    import tensorflow as tf
    tf.__version__
    

    可以看到TensorFlow版本为2.0.0

     
     

    学习更多编程知识,请关注我的公众号:

    代码的路

    相关文章

      网友评论

        本文标题:Linux安装tensorflow

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