pip install tensorflow Requirement already satisfied: tensorflow in d:\anaconda3\lib\site-packages (2.12.0)
时间: 2023-12-03 22:02:34 浏览: 258
在Anaconda中装tensorflow【就是装好了写下来给自己看看的
5星 · 资源好评率100%
It seems like you already have TensorFlow installed on your system. You can check the version of TensorFlow by running the following command in your terminal or command prompt:
```
python -c "import tensorflow as tf; print(tf.__version__)"
```
If the output shows the version number, then TensorFlow is installed and ready to use.
阅读全文