Jetson Xavier NX
This is install for python 3.x .
The Jetpack version is 4.5 so I need to install pytorch v1.7 .
wget https://nvidia.box.com/shared/static/cs3xn3td6sfgtene6jdvsxlr366m2dhq.whl -O torch-1.7.0-cp36-cp36m-linux_aarch64.whl
sudo apt-get install python3-pip libopenblas-base libopenmpi-dev
pip3 install Cython
pip3 install numpy torch-1.7.0-cp36-cp36m-linux_aarch64.whl
To install torchvision first you have to check the corresponding version to CUDA.
Learn More →
In my case, I had install the pytorch v1.7 so the version of torchvision should be v0.8.1 .
sudo apt-get install libjpeg-dev zlib1g-dev libpython3-dev libavcodec-dev libavformat-dev libswscale-dev
git clone --branch v0.8.1 https://github.com/pytorch/vision torchvision
cd torchvision
export BUILD_VERSION=0.8.1
sudo python3 setup.py install
pip3 uninstall pillow
pip3 install pillow==8.4.0
cd ../
https://forums.developer.nvidia.com/t/pytorch-for-jetson-version-1-7-0-now-available/72048
from collections import namedtuple import pandas as pd Product = namedtuple('Product', ['name', 'price', 'taste']) WeekData = namedtuple('WeekData', ['week', 'row_data']) data = [ WeekData(week='W321', row_data=[Product(name='A', price=10, taste='good'), Product(name='B', price=10, taste='excellent'), Product(name='C', price=8, taste='fair')]), WeekData(week='W322', row_data=[Product(name='A', price=12, taste='good'), Product(name='B', price=15, taste='excellent'), Product(name='C', price=16, taste='fair')]), WeekData(week='W323', row_data=[Product(name='A', price=14, taste='good'), Product(name='B', price=20, taste='excellent'), Product(name='C', price=22, taste='fair')])
Jun 17, 2023[TOC] Environment Setup Yolox repository git clone https://github.com/willy541222/YOLOX.git :::info 建議下載到沒有中文的路徑。 :::
Jul 23, 2022[TOC] Introduction VPN Setup The VPN Survice I use the ==Zerotier==. It is free and friendly to setup, so it is satisfy to initial Setup. https://www.zerotier.com Sign up
May 20, 2022[TOC] Environment Jetspack 4.6 torch 1.7.0 torchvision 0.8.1 OpenCV 4.1.1 CUDA 10.2
May 19, 2022or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up