Difference between revisions of "Deploying Deep Learning"

From ESS-WIKI
Jump to: navigation, search
(Created page with "== Linux Version == Ubuntu 18.04<br/> L4T-R32.5.0")
 
m
Line 2: Line 2:
  
 
Ubuntu 18.04<br/> L4T-R32.5.0
 
Ubuntu 18.04<br/> L4T-R32.5.0
 +
 +
== Build Deep Learning on Jeston ==
 +
 +
<pre>$ 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
 +
</pre>

Revision as of 03:59, 13 October 2022

Linux Version

Ubuntu 18.04
L4T-R32.5.0

Build Deep Learning on Jeston

$ 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