安装 TensorFlow 2
TensorFlow 在以下 64 位系统上经过测试和支持
|
|
# Requires the latest pippip install --upgrade pip
# Current stable release for CPU and GPUpip install tensorflow
# Or try the preview build (unstable)pip install tf-nightly
下载软件包
使用 Python 的 pip 包管理器安装 TensorFlow。
适用于 Ubuntu、Windows 和 macOS 的官方软件包。
运行 TensorFlow 容器
该 TensorFlow Docker 镜像 已配置为运行 TensorFlow。一个 Docker 容器在虚拟环境中运行,是设置 GPU 支持的最简单方法。
docker pull tensorflow/tensorflow:latest # Download latest stable image
docker run -it -p 8888:8888 tensorflow/tensorflow:latest-jupyter # Start Jupyter server
Google Colab:学习和使用 TensorFlow 的简便方法
无需安装 - 直接在浏览器中运行 TensorFlow 教程,使用 Colaboratory,这是一个 Google 研究项目,旨在帮助传播机器学习教育和研究。它是一个 Jupyter 笔记本环境,无需设置即可使用,并且完全在云中运行。 阅读博客文章。