> For the complete documentation index, see [llms.txt](https://robertchoi.gitbook.io/jetson-tx2/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://robertchoi.gitbook.io/jetson-tx2/tensorflow.md).

# Tensorflow 설치 및 확인

{% embed url="<https://docs.nvidia.com/deeplearning/frameworks/install-tf-jetson-platform/index.html>" %}

1. Install [JetPack ](https://developer.nvidia.com/jetpack)on your Jetson device.
2. Install system packages required by TensorFlow:

   ```
   $ sudo apt-get update
   $ sudo apt-get install libhdf5-serial-dev hdf5-tools libhdf5-dev zlib1g-dev zip libjpeg8-dev
   ```
3. Install and upgrade pip3.

   ```
   $ sudo apt-get install python3-pip
   $ sudo pip3 install -U pip testresources setuptools
   ```
4. Install the Python package dependencies.

   ```
   $ sudo pip3 install -U numpy==1.16.1 future==0.17.1 mock==3.0.5 h5py==2.9.0 keras_preprocessing==1.0.5 keras_applications==1.0.8 gast==0.2.2 enum34 futures protobuf
   ```

Install TensorFlow using the pip3 command. This command will install the latest version of TensorFlow compatible with JetPack 4.3.

```
$ sudo pip3 install --pre --extra-index-url https://developer.download.nvidia.com/compute/redist/jp/v43 tensorflow-gpu
```

Install TensorFlow using the pip3 command. This command will install the latest version of TensorFlow compatible with JetPack 3.3.

```
$ sudo pip3 install --pre --extra-index-url https://developer.download.nvidia.com/compute/redist/jp/v33 tensorflow-gpu
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://robertchoi.gitbook.io/jetson-tx2/tensorflow.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
