Update TensorFlow

前端 未结 8 1655
逝去的感伤
逝去的感伤 2020-12-28 13:12

I\'m working with Ubuntu 14.04 , I had a TensorFlow V0.10 but I want to update this version. if i do:

$ pip install --upgrade $TF_         


        
8条回答
  •  没有蜡笔的小新
    2020-12-28 13:42

    Upgrading to Tensorflow 2.0 using pip. Requires Python > 3.4 and pip >= 19.0

    CST:~ USERX$ pip3 show tensorflow
    Name: tensorflow
    Version: 1.13.1
    
    CST:~ USERX$ python3 --version
    Python 3.7.3
    
    CST:~ USERX$ pip3 install --upgrade tensorflow
    
    CST:~ USERX$ pip3 show tensorflow
    Name: tensorflow
    Version: 2.0.0
    

提交回复
热议问题