Difference between revisions of "Deploying Deep Learning"
From ESS-WIKI
m |
m |
||
Line 4: | Line 4: | ||
== Build Deep Learning on Jeston == | == Build Deep Learning on Jeston == | ||
+ | |||
+ | Reference : https://github.com/dusty-nv/jetson-inference/blob/L4T-R32.5.0/docs/building-repo-2.md | ||
<pre>$ sudo apt-get update | <pre>$ sudo apt-get update |
Revision as of 03:05, 13 October 2022
Linux Version
Ubuntu 18.04
L4T-R32.5.0
Build Deep Learning on Jeston
Reference : https://github.com/dusty-nv/jetson-inference/blob/L4T-R32.5.0/docs/building-repo-2.md
$ sudo apt-get update $ sudo apt-get install git cmake libpython3-dev python3-numpy $ git clone --recursive https://github.com/dusty-nv/jetson-inference $ cd jetson-inference $ mkdir build $ cd build $ cmake ../ $ make -j$(nproc) $ sudo make install $ sudo ldconfig