安装 TensorFlow Graphics

稳定版本

TensorFlow Graphics 依赖于 TensorFlow 1.13.1 或更高版本。也支持 TensorFlow 的 nightly 版本 (tf-nightly)。

要从 PyPI 安装最新的 CPU 版本,请运行以下命令

# Installing with the `--upgrade` flag ensures you'll get the latest version.
pip install --upgrade tensorflow-graphics

要安装最新的 GPU 版本,请运行

# Installing with the `--upgrade` flag ensures you'll get the latest version.
pip install --upgrade tensorflow-graphics-gpu

有关其他安装帮助、安装先决条件的指南以及(可选)设置虚拟环境,请参阅 TensorFlow 安装指南

从源代码安装 - macOS/Linux

您也可以通过执行以下命令从源代码安装

git clone https://github.com/tensorflow/graphics.git
sh build_pip_pkg.sh
pip install --upgrade dist/*.whl

安装可选包 - Linux

要使用 TensorFlow Graphics EXR 数据加载器,需要安装 OpenEXR。可以通过运行以下命令来完成

sudo apt-get install libopenexr-dev
pip install --upgrade OpenEXR