当前位置:   article > 正文

tensorflow2.0降级及如何从别的版本升到2.0_降低tf版本为2.0

降低tf版本为2.0

代码实践《tensorflow实战GOOGLE深度学习框架》时,由于本机安装的tensorflow为2.0版本与配套书籍代码1.4的API不兼容,只得将tensorflow降级为1.4.0版本使用,降级方法如下
1 pip uninstall tensorflow

在这里插入图片描述
2 pip install tensorflow==1.14.0 -i https://pypi.tuna.tsinghua.edu.cn/simple

在这里插入图片描述
验证

import tensorflow as tf
print(tf.version)
在这里插入图片描述
二 从别的版本升级到2.0
自动卸载与其相关包
pip uninstall tensorflow
安装某版本
pip install --no-cache-dir tensorflow==x.xx (此处填写2.0)
在这里插入图片描述
验证
在这里插入图片描述

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号