本文介绍了Pip3显示不同版本的Tensorflow库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我这样做

python3 -c 'import tensorflow as tf; print(tf.__version__)'

我得到 1.3.0

当我这样做

pip3 show tensorflow

我得到 1.8.0

为什么我在paperspace.com的同一台Ubuntu Linux计算机上获得不同版本的tensorflow

Why do I get different version of tensorflow on my same Ubuntu linux machine on paperspace.com

推荐答案

我不确定,但是我认为您的系统中可能有多个python发行版,并且与您的pip3相关的python与您的.

I'm not sure but I think you might have more than one python distributions in your system and your pip3 associated python doesn't match your python3.

  1. 要检查两个"(潜在)张量流:

  1. To check your "two" (potential) tensorflows:

python3 -c 'import tensorflow as tf; print(tf.__file__)'

pip3 show tensorflow # And look for "Location: ..."

  • 要检查您的pip3python3关联的站点程序包,请执行以下操作:

  • To check your pip3 and python3 associcated site-packages:

    python3 -m site
    
    #Or
    
    python3 -c "import site; print(site.getsitepackages())"
    

    pip --version
    

  • 这篇关于Pip3显示不同版本的Tensorflow库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

    10-18 19:12