降低tensorflow_core版本
时间: 2023-11-14 13:07:19 浏览: 125
查看tensorflow版本
如果你想要降低TensorFlow版本,可以通过以下命令来安装指定版本的TensorFlow:
```
pip install tensorflow==<version>
```
其中,`<version>`是你想要安装的TensorFlow版本号。例如,如果你想要安装1.14.0版本的TensorFlow,可以使用以下命令:
```
pip install tensorflow==1.14.0
```
请注意,降低TensorFlow版本可能会导致一些功能不可用或出现错误。同时,你需要确保你的代码与所安装的TensorFlow版本兼容。
阅读全文