📜  如何在 windows cpu 上安装 tensorflow - Python (1)

📅  最后修改于: 2023-12-03 15:24:25.389000             🧑  作者: Mango

如何在 Windows CPU 上安装 TensorFlow - Python

TensorFlow 是一个用于建立并训练机器学习模型的开源库,由谷歌公司开发。本文将介绍在 Windows CPU 上安装 TensorFlow 的步骤。

1. 安装 Python

TensorFlow 的 Python 版本支持 Python 3.5-3.8,因此您需要先安装 Python。您可以从 Python 官网下载最新版本的 Python 安装程序。

2. 安装 TensorFlow

使用 pip 包管理器快速安装 TensorFlow,打开命令行窗口并输入以下代码:

pip install tensorflow

如果您在安装时遇到任何问题,请尝试使用管理员权限打开命令行窗口或更新 pip 版本。

3. 测试 TensorFlow 安装

要测试 TensorFlow 是否正确安装,请打开命令行窗口并输入以下代码:

python -c "import tensorflow as tf;print(tf.reduce_sum(tf.random.normal([1000,1000])))"

如果您看到一组随机数字被打印,这意味着 TensorFlow 已经成功安装到您的系统上。

4. 可选步骤:安装 Anaconda

如果您更喜欢使用 Anaconda,则可以将其用作替代方法安装 TensorFlow。

要使用 Anaconda 安装 TensorFlow,请打开命令行窗口并输入以下代码:

conda create -n tf tensorflow

这将在 Anaconda 上创建称为 tf 的虚拟环境,并自动安装 TensorFlow。

结论

TensorFlow 是一个功能强大的机器学习库,在 Windows CPU 上安装 TensorFlow 非常容易。只需安装 Python,使用 pip 包管理器安装 TensorFlow,然后测试您的安装。如果您更喜欢使用 Anaconda,则可以使用上述步骤进行安装。

注意: 如果您使用的是 Windows GPU,安装 TensorFlow 的步骤与此不同。请参阅 TensorFlow 官方文档以获取更多信息。