python 3.9 安装tensorflow
时间: 2024-05-13 07:11:58 浏览: 149
python安装及环境配置tensorflow安装.docx
安装 TensorFlow 通常需要在 Python 环境中完成,以下是安装 TensorFlow 2.0+ 的步骤:
1. 安装 Python 3.5-3.8 版本的其中一个。可以从官网下载:https://www.python.org/downloads/
2. 安装 pip。在命令行中输入以下内容:
```
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
```
3. 使用 pip 安装 TensorFlow。在命令行中输入以下内容:
```
pip install tensorflow
```
4. 如果你想使用 GPU 版本的 TensorFlow,你还需要安装 Nvidia 的 CUDA 和 cuDNN 库。具体安装过程可以参考 TensorFlow 官方文档:https://www.tensorflow.org/install/gpu
阅读全文