본문 바로가기
Jetson

Install Jtop on the Jetson Xavier NX

by yongee97 2023. 3. 7.

* version

- Jetpack 4.5.1

- ubuntu 18.04

- python 3.6

 

* reference

https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=zeta0807&logNo=222008386346 

 

젯슨 나노에 jtop 설치하여 각종 정보 보기

글 작성: 2020.06.22 1차 수정: 2020.06.23. Jetpack 4.3 jtop 정보 추가 2추 수정: 2021.05.09. jetson-s...

blog.naver.com

 

 

* install

 

1. Install prerequistics

# python3-pip
sudo apt update
sudo apt install python3-pip

- this is to deal with 'pip3 command not found problem' when using sudo pip

https://stackoverflow.com/questions/48014769/pip3-command-not-found

 

pip3: command not found

I want to install TensorFlow following these instructions: https://web.archive.org/web/20170627102751/https://www.tensorflow.org/versions/r0.12/get_started/os_setup#pip_installation But when I try ...

stackoverflow.com

 

2. install Jtop

sudo pip3 install -U jetson-stats
reboot

jtop

 

 

 

* If there is an error below

# The jtop.service is not active. Please run:
# sudo systemctl restart jtop.service

and restart can't solve the problem,

 

enter below command

sudo -H pip3 install --no-cache-dir -U jetson-stats

- reference

https://github.com/rbonghi/jetson_stats/issues/86

 

jetson_stats.service: inactive · Issue #86 · rbonghi/jetson_stats

Describe the bug NVIDIA Jetson AGX Xavier [16GB] Jetpack 4.3 [L4T 32.3.1] NV Power Mode: MAXN - Type: 0 jetson_stats.service: inactive I'm confused about * jetson_stats.service: inactive. While...

github.com