tensorflow-estimator降版本。
时间: 2023-12-28 11:03:41 浏览: 79
查看tensorflow版本
要将tensorflow-estimator降级到指定版本,可以使用以下命令:
```
pip install tensorflow-estimator==版本号
```
其中,将“版本号”替换为您想要安装的具体版本号即可。例如,如果要将tensorflow-estimator降级到1.15.0版本,可以使用以下命令:
```
pip install tensorflow-estimator==1.15.0
```
请注意,降级tensorflow-estimator可能会影响其他依赖于它的库或应用程序。因此,在降级之前,请确保您已经了解了可能的影响。
阅读全文