**The smallest computer in the Jetson family is the Jetson Nano. The Jetson Nano is a small, powerful AI computer that allows you to run multiple neural networks in parallel.** 

<figure class="">
  <img src="/assets/img/blog/2022-12-18-gpu-status-nvidia-jetson/header_img.webp"
       alt="Abstract GPU Chip"><figcaption>
      Generated with Grok

    </figcaption></figure>


There are several use cases for which you can use the Jetson Nano. Examples are: Image classification, object recognition, segmentation and speech processing. For this, the platform requires only 5 watts. The explanations in this tutorial were tested on a Jetson Nano, but should work on all Jetson systems.

<div class="ad-banner" style="margin-bottom: 0.7rem;">
    <hr class="hr-text" data-content="Advertisement*">
    <a href="/out/elevenlabs/" target="_blank" rel="sponsored nofollow noopener"><img src="../../assets/img/ads/elevenlabs.webp" alt="ElevenLabs Partner*" nopin="nopin"></a>
    <small style="display: block; margin-bottom: 0.5rem; margin-top: 0.5rem;"><strong>✨ Read without banner ads? </strong><a href="https://steady.page/en/tinztwins-hub/about" target="_blank" rel="noopener">Become a member</a> or <a href="https://steady.page/en/log_in?publication=tinztwins-hub" target="_blank" rel="noopener">log in</a></small>
</div>

<figure class="">
  <img src="/assets/img/blog/2022-12-18-gpu-status-nvidia-jetson/jetson_nano.webp"
       alt="Nvidia Jetson Nano"><figcaption>
      Nvidia Jetson Nano

    </figcaption></figure>


Nvidia-smi is not supported on Jetson Platform. Instead nvidia-smi you can use [jetson-stats](https://rnext.it/jetson_stats/){:target="_blank" rel="noopener"}.

## Install jetson-stats
First, update and upgrade your system:

```bash
sudo apt update
sudo apt upgrade
```

Then install jetson-stats:

```bash
sudo apt install python-pip -y

# install jetson-stats 
sudo -H pip install jetson-stats

# reboot jetson
sudo reboot
```

Usage:
```bash
jtop
```

<figure class="">
  <img src="/assets/img/blog/2022-12-18-gpu-status-nvidia-jetson/jtop.webp"
       alt="jtop stats"><figcaption>
      jtop stats

    </figcaption></figure>


With jtop, some information about the state of the system can be retrieved. You can find more information on [Github](https://github.com/rbonghi/jetson_stats){:target="_blank" rel="noopener"}.

<div class="ad-banner">
  <hr>
  💡 Do you enjoy our content and want to read super-detailed guides about AI Engineering? If so, be sure to check out our premium offer!

  <div style="text-align: center; margin-top: 0.7rem;">
    <a href="https://steady.page/en/tinztwins-hub/about" class="btn btn--primary">Unlock Premium</a>      
  </div>
</div>

<div class="ad-banner">
    <hr class="hr-text" data-content="Our Merch Shop">
    <a href="https://shop.tinztwinshub.com/merch/"><img src="../../assets/img/ads/ai_and_coding_merch.webp" alt="AI and Coding Merch" nopin="nopin"></a>
    <small style="display: block; margin-bottom: 0.5rem; margin-top: 0.5rem;"><strong>✨ Read without banner ads? </strong><a href="https://steady.page/en/tinztwins-hub/about" target="_blank" rel="noopener">Become a member</a> or <a href="https://steady.page/en/log_in?publication=tinztwins-hub" target="_blank" rel="noopener">log in</a></small>
</div>