命令行查看当前tensorflow和tensorflow-estimator的版本
时间: 2024-06-18 15:06:14 浏览: 227
可以通过以下命令查看当前tensorflow和tensorflow-estimator的版本:
```shell
pip show tensorflow tensorflow-estimator
```
输出示例:
```shell
Name: tensorflow
Version: 2.1.0
Summary: TensorFlow is an open source machine learning framework for everyone.
...
Name: tensorflow-estimator
Version: 2.1.0
Summary: TensorFlow Estimator.
...
```
阅读全文