如何在Windows10上安装tensorRT for tensorflow的wheel包?
How to install wheel package of tensorRT for tensorflow on Windows 10?
根据 NVIDIA tensorRT 文档,我已经完成了 windows.But 的 zip 文件的前 4 个步骤,现在我无法真正理解第 5 步和第 6 步,特别是我必须做 3 件事才能让它工作 “tensorFlow”。我不明白如何执行这一行
python3 -m pip install <安装路径>\graphsurgeon\graphsurgeon-0.4.5-py2.py3-none-any.whl
这是link:https://docs.nvidia.com/deeplearning/tensorrt/install-guide/index.html#installing-zip
P.S:我对机器学习和 TensorFlow 的世界还很陌生。
您需要打开具有 python 环境的终端。
按Ctrl+r并输入cmd
+Enter打开一个终端。您可以通过 运行 python --version
.
检查您的 Python 版本是否正确
可以在此处找到有关软件包安装的更多信息:
https://packaging.python.org/tutorials/installing-packages/#requirements-for-installing-packages
对于安装命令执行,将 <installpath>
替换为您安装 TensorRT 的位置,例如,如果您将其安装在 C:\Program Files\TensorRT
中,请使用:
python3 -m pip install "C:\Program Files"\TensorRT\graphsurgeon\graphsurgeon-0.4.5-py2.py3-none-any.whl
这在您的 link:
的 2) 中有所描述
Choose where you want to install TensorRT. The zip file will install
everything into a subdirectory called TensorRT-7.x.x.x. This new
subdirectory will be referred to as <installpath>
in the steps below.
根据 NVIDIA tensorRT 文档,我已经完成了 windows.But 的 zip 文件的前 4 个步骤,现在我无法真正理解第 5 步和第 6 步,特别是我必须做 3 件事才能让它工作 “tensorFlow”。我不明白如何执行这一行
python3 -m pip install <安装路径>\graphsurgeon\graphsurgeon-0.4.5-py2.py3-none-any.whl
这是link:https://docs.nvidia.com/deeplearning/tensorrt/install-guide/index.html#installing-zip
P.S:我对机器学习和 TensorFlow 的世界还很陌生。
您需要打开具有 python 环境的终端。
按Ctrl+r并输入cmd
+Enter打开一个终端。您可以通过 运行 python --version
.
可以在此处找到有关软件包安装的更多信息: https://packaging.python.org/tutorials/installing-packages/#requirements-for-installing-packages
对于安装命令执行,将 <installpath>
替换为您安装 TensorRT 的位置,例如,如果您将其安装在 C:\Program Files\TensorRT
中,请使用:
python3 -m pip install "C:\Program Files"\TensorRT\graphsurgeon\graphsurgeon-0.4.5-py2.py3-none-any.whl
这在您的 link:
的 2) 中有所描述Choose where you want to install TensorRT. The zip file will install everything into a subdirectory called TensorRT-7.x.x.x. This new subdirectory will be referred to as
<installpath>
in the steps below.