Could not find a version that satisfies the requirement tensorflower
时间: 2023-10-27 10:06:34 浏览: 110
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
TensorFlow is a popular open-source machine learning framework. To install TensorFlow, you need to make sure you have the correct package name. The correct package name is "tensorflow," not "tensorflower." You can install TensorFlow by running the following command:
```
pip install tensorflow
```
This will install the latest stable version of TensorFlow. If you need a specific version, you can specify it using the `==` syntax. For example, to install TensorFlow version 2.3.0, you can run:
```
pip install tensorflow==2.3.0
```
Make sure you have Python and pip installed before running these commands.
阅读全文