Skip to content

Commit c33437c

Browse files
authored
Fixed installation docs Dodo
1 parent d4b1273 commit c33437c

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

docs/source/getting_started/installation.rst

+21-1
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,17 @@ On jetson, you need the version for its CPU arch:
172172

173173
Please check `official document <https://docs.nvidia.com/deeplearning/frameworks/install-pytorch-jetson-platform/index.html>`_ for latest information for pytorch.
174174

175+
Current for Jetson Orin on Ubuntu 20.04:
176+
177+
.. code-block:: bash
178+
179+
export TORCH_INSTALL=https://developer.download.nvidia.cn/compute/redist/jp/v511/pytorch/torch-2.0.0+nv23.05-cp38-cp38-linux_aarch64.whl
180+
pip install Cython
181+
python -m pip install numpy==’1.24.1’
182+
python -m pip install --no-cache $TORCH_INSTALL
183+
184+
Current for Jetson Xavier on Ubuntu 18.04:
185+
175186
.. code-block:: bash
176187
177188
wget https://nvidia.box.com/shared/static/p57jwntv436lfrd78inwl7iml6p13fzh.whl -O torch-1.8.0-cp36-cp36m-linux_aarch64.whl
@@ -254,7 +265,16 @@ Python dependencies
254265

255266
.. code-block:: bash
256267
257-
pip3 install torchvision scikit-learn
268+
pip3 install scikit-learn
269+
270+
Torchvision (for Jetson Orin on Ubuntu 20.04)
271+
272+
.. code-block:: bash
273+
274+
git clone --branch release/0.15 https://github.com/pytorch/vision torchvision
275+
cd torchvision/
276+
export BUILD_VERSION=0.15.1
277+
python3 setup.py install --user
258278
259279
Detectron
260280

0 commit comments

Comments
 (0)