You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TensorFlow r1.14 (for Python to convert model from .pb to .uff)
22
22
23
+
## Update
24
+
This master branch now uses Jetpack 4.4, so dependencies have slightly changed and tensorflow is not preinstalled anymore. So there is an extra step that takes a few minutes more than before. <br>
25
+
In case you would like to use older versions of Jetpack there is a tag jp4.2.2, that can links to the older implementation.
26
+
23
27
## Installation
24
28
#### 1. Install Cuda, CudNN, TensorRT, and TensorFlow for Python
25
29
You can check [NVIDIA website](https://developer.nvidia.com/) for help.
26
30
Installation procedures are very well documented.<br><br>**If you are
27
-
using NVIDIA Jetson (Nano, TX1/2, Xavier) with Jetpack 4.2.2**, all needed packages
31
+
using NVIDIA Jetson (Nano, TX1/2, Xavier) with Jetpack 4.4**, most needed packages
28
32
should be installed if the Jetson was correctly flashed using SDK
29
-
Manager, you will only need to install cmakeand openblas:
33
+
Manager or the SD card image, you will only need to install cmake, openblas and tensorflow:
30
34
```bash
31
-
sudo apt-get install cmake libopenblas-dev
35
+
sudo apt install cmake libopenblas-dev
36
+
```
37
+
#### 2. Install Tensorflow
38
+
The following shows the steps to install Tensorflow for Jetpack 4.4. This was copied from the official [NVIDIA documentation](https://docs.nvidia.com/deeplearning/frameworks/install-tf-jetson-platform/index.html). I'm assuming you don't need to install it in a virtual environment. If yes, please refer to the documentation linked above. If you are not installing this on a jetson, please refer to the official tensorflow documentation.
0 commit comments