Skip to content

Commit d90dc8d

Browse files
committed
feat: add ROS2 Humble JP6 app; improve ROS1 download with aria2c auto-install and retry
- apps/page.py: auto-install aria2c on Windows (winget/choco) before download - jetson_examples.json: ROS1 Noetic download now uses aria2c (16-thread) with 5-retry loop and auto-installs aria2 via apt/yum/pacman on Linux - jetson_examples.json: add jx-ros2-humble-jp6 app - native apt install of ros-humble-desktop on Ubuntu 22.04 (JP6), no Docker required - .gitignore: add .kiro/ to ignored paths
1 parent 2b24db2 commit d90dc8d

3 files changed

Lines changed: 442 additions & 49 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ Thumbs.db
3939
.codex/
4040
.codex
4141

42+
# Kiro IDE
43+
.kiro/
44+
4245
# Temp / broken installs
4346
=0.20.0
4447

seeed_jetson_develop/modules/apps/data/jetson_examples.json

Lines changed: 153 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"desc": "Launch `audiocraft` from jetson-examples. Disk 25GB. RAM 7GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0, 36.3.0.",
88
"source": "jetson-examples",
99
"example_name": "audiocraft",
10-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
10+
"check_cmd": "",
1111
"install_cmds": [
1212
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run audiocraft'"
1313
],
@@ -38,7 +38,7 @@
3838
"desc": "Launch `comfyui` from jetson-examples. Disk 30GB. RAM 15GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0.",
3939
"source": "jetson-examples",
4040
"example_name": "comfyui",
41-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
41+
"check_cmd": "",
4242
"install_cmds": [
4343
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run comfyui'"
4444
],
@@ -68,7 +68,7 @@
6868
"desc": "Launch `deep-live-cam` from jetson-examples. Disk 40GB. RAM 20GB. JetPack/L4T 36.3.0.",
6969
"source": "jetson-examples",
7070
"example_name": "deep-live-cam",
71-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
71+
"check_cmd": "",
7272
"install_cmds": [
7373
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run deep-live-cam'"
7474
],
@@ -96,7 +96,7 @@
9696
"desc": "Launch `depth-anything` from jetson-examples. Disk 20GB. RAM 4GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0.",
9797
"source": "jetson-examples",
9898
"example_name": "depth-anything",
99-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
99+
"check_cmd": "",
100100
"install_cmds": [
101101
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run depth-anything'"
102102
],
@@ -126,7 +126,7 @@
126126
"desc": "Launch `depth-anything-v2` from jetson-examples. Disk 15GB. RAM 4GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0.",
127127
"source": "jetson-examples",
128128
"example_name": "depth-anything-v2",
129-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
129+
"check_cmd": "",
130130
"install_cmds": [
131131
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run depth-anything-v2'"
132132
],
@@ -185,6 +185,36 @@
185185
"docker_enabled": true
186186
}
187187
},
188+
{
189+
"id": "jx-gpt-oss",
190+
"icon": "LLM",
191+
"name": "GPT-OSS",
192+
"category": "LLM / GenAI",
193+
"desc": "Launch `gpt-oss` from jetson-examples. Disk 50GB. RAM 14GB. JetPack/L4T 36.4.0, 36.4.3, 36.4.4.",
194+
"source": "jetson-examples",
195+
"example_name": "gpt-oss",
196+
"check_cmd": "",
197+
"install_cmds": [
198+
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run gpt-oss'"
199+
],
200+
"run_cmds": [
201+
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run gpt-oss'"
202+
],
203+
"clean_cmds": [
204+
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer clean gpt-oss'"
205+
],
206+
"uninstall_cmds": [],
207+
"requirements": {
208+
"jetpack_versions": [
209+
"36.4.0",
210+
"36.4.3",
211+
"36.4.4"
212+
],
213+
"required_disk_gb": 50,
214+
"required_mem_gb": 14,
215+
"docker_enabled": false
216+
}
217+
},
188218
{
189219
"id": "jx-llama-factory",
190220
"icon": "LLM",
@@ -193,7 +223,7 @@
193223
"desc": "Launch `llama-factory` from jetson-examples. Disk 25GB. RAM 7GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0.",
194224
"source": "jetson-examples",
195225
"example_name": "llama-factory",
196-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
226+
"check_cmd": "",
197227
"install_cmds": [
198228
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run llama-factory'"
199229
],
@@ -223,7 +253,7 @@
223253
"desc": "Launch `llama3` from jetson-examples. Disk 15GB. RAM 7GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0, 36.3.0.",
224254
"source": "jetson-examples",
225255
"example_name": "llama3",
226-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
256+
"check_cmd": "",
227257
"install_cmds": [
228258
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run llama3'"
229259
],
@@ -254,7 +284,7 @@
254284
"desc": "Launch `llama3.2` from jetson-examples. Disk 15GB. RAM 7GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0, 36.3.0.",
255285
"source": "jetson-examples",
256286
"example_name": "llama3.2",
257-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
287+
"check_cmd": "",
258288
"install_cmds": [
259289
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run llama3.2'"
260290
],
@@ -286,7 +316,7 @@
286316
"desc": "Launch `llava` from jetson-examples. Disk 15GB. RAM 7GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0, 36.3.0.",
287317
"source": "jetson-examples",
288318
"example_name": "llava",
289-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
319+
"check_cmd": "",
290320
"install_cmds": [
291321
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run llava'"
292322
],
@@ -317,7 +347,7 @@
317347
"desc": "Launch `llava-v1.5-7b` from jetson-examples. Disk 25GB. RAM 7GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0, 36.3.0.",
318348
"source": "jetson-examples",
319349
"example_name": "llava-v1.5-7b",
320-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
350+
"check_cmd": "",
321351
"install_cmds": [
322352
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run llava-v1.5-7b'"
323353
],
@@ -346,7 +376,7 @@
346376
"desc": "Launch `llava-v1.6-vicuna-7b` from jetson-examples. Disk 25GB. RAM 7GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0, 36.3.0.",
347377
"source": "jetson-examples",
348378
"example_name": "llava-v1.6-vicuna-7b",
349-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
379+
"check_cmd": "",
350380
"install_cmds": [
351381
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run llava-v1.6-vicuna-7b'"
352382
],
@@ -375,7 +405,7 @@
375405
"desc": "Launch `nanodb` from jetson-examples. Disk 80GB. RAM 15GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0, 36.3.0.",
376406
"source": "jetson-examples",
377407
"example_name": "nanodb",
378-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
408+
"check_cmd": "",
379409
"install_cmds": [
380410
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run nanodb'"
381411
],
@@ -404,7 +434,7 @@
404434
"desc": "Launch `nanoowl` from jetson-examples. Disk 25GB. RAM 7GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0, 36.3.0.",
405435
"source": "jetson-examples",
406436
"example_name": "nanoowl",
407-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
437+
"check_cmd": "",
408438
"install_cmds": [
409439
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run nanoowl'"
410440
],
@@ -425,6 +455,36 @@
425455
"docker_enabled": true
426456
}
427457
},
458+
{
459+
"id": "jx-nvblox",
460+
"icon": "BOT",
461+
"name": "NVBlox",
462+
"category": "Robotics / ROS 2",
463+
"desc": "Launch `nvblox` from jetson-examples. Disk 60GB. RAM 14GB. JetPack/L4T 36.4.0, 36.4.3, 36.4.4.",
464+
"source": "jetson-examples",
465+
"example_name": "nvblox",
466+
"check_cmd": "",
467+
"install_cmds": [
468+
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run nvblox'"
469+
],
470+
"run_cmds": [
471+
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run nvblox'"
472+
],
473+
"clean_cmds": [
474+
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer clean nvblox'"
475+
],
476+
"uninstall_cmds": [],
477+
"requirements": {
478+
"jetpack_versions": [
479+
"36.4.0",
480+
"36.4.3",
481+
"36.4.4"
482+
],
483+
"required_disk_gb": 60,
484+
"required_mem_gb": 14,
485+
"docker_enabled": true
486+
}
487+
},
428488
{
429489
"id": "jx-ollama",
430490
"icon": "LLM",
@@ -433,7 +493,7 @@
433493
"desc": "Launch `ollama` from jetson-examples. Disk 15GB. RAM 7GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0, 36.3.0.",
434494
"source": "jetson-examples",
435495
"example_name": "ollama",
436-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
496+
"check_cmd": "",
437497
"install_cmds": [
438498
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run ollama'"
439499
],
@@ -456,6 +516,78 @@
456516
"docker_enabled": true
457517
}
458518
},
519+
{
520+
"id": "jx-ros1-jp6",
521+
"icon": "ROS",
522+
"name": "ROS 1 Noetic (JP6)",
523+
"category": "Robotics / ROS 1",
524+
"desc": "Install ROS 1 Noetic Docker image from the built-in OneDrive archive. Import image as `ros:noetic`. Verify with `rosversion -d`. JetPack/L4T 36.4.0, 36.4.3, 36.4.4.",
525+
"source": "jetson-examples",
526+
"example_name": "ros1-jp6",
527+
"check_cmd": "bash -lc 'docker image inspect ros:noetic >/dev/null 2>&1'",
528+
"install_only": true,
529+
"install_cmds": [
530+
"bash -lc 'set -e; echo \"[1/4] Check & install Docker...\"; if ! command -v docker >/dev/null 2>&1; then echo \"Docker not found, installing...\"; curl -fsSL https://get.docker.com | sh; sudo usermod -aG docker $USER; echo \"Docker installed. NOTE: you may need to re-login for group changes to take effect.\"; else echo \"[ok] Docker already installed: $(docker --version)\"; fi'",
531+
"bash -lc 'set -e; echo \"[2/4] Ensure docker daemon is running...\"; sudo systemctl start docker; sudo systemctl enable docker; echo \"[ok] Docker daemon running\"'",
532+
"bash -lc 'set -e; echo \"[3/4] Download ROS 1 Noetic image archive...\"; if ! command -v aria2c >/dev/null 2>&1; then echo \"[info] aria2 not found, installing...\"; if command -v apt-get >/dev/null 2>&1; then sudo apt-get install -y aria2; elif command -v yum >/dev/null 2>&1; then sudo yum install -y aria2; elif command -v pacman >/dev/null 2>&1; then sudo pacman -S --noconfirm aria2; else echo \"[warn] cannot auto-install aria2, will fall back to wget\"; fi; fi; CACHE_DIR=$HOME/.cache/seeed-ros1-jp6; mkdir -p $CACHE_DIR; TAR_PATH=$CACHE_DIR/ros-noetic-jp6.tar; TMP_PATH=${TAR_PATH}.part; if [ -f \"$TAR_PATH\" ]; then SIZE=$(stat -c%s \"$TAR_PATH\" 2>/dev/null || echo 0); if [ \"$SIZE\" -lt 1073741824 ]; then echo \"[warn] cached file incomplete ($SIZE bytes < 1GB), re-downloading...\"; rm -f \"$TAR_PATH\"; else echo \"[ok] archive already cached at $TAR_PATH ($SIZE bytes)\"; exit 0; fi; fi; URL=\"https://seeedstudio88-my.sharepoint.com/:u:/g/personal/youjiang_yu_seeedstudio88_onmicrosoft_com/IQCOgjRBDytqT4jKdktOzhdIAUf97NfnQJ4lk_DAHpLTaRY?e=qxLcJL&download=1\"; echo \"Downloading from OneDrive (~3GB, please wait)...\"; MAX_RETRY=5; i=0; while [ $i -lt $MAX_RETRY ]; do i=$((i+1)); echo \"[attempt $i/$MAX_RETRY]\"; if command -v aria2c >/dev/null 2>&1; then aria2c -x 16 -s 16 -k 1M --retry-wait=5 --max-tries=3 --user-agent=\"Mozilla/5.0\" --allow-overwrite=true --auto-file-renaming=false -d \"$CACHE_DIR\" -o \"ros-noetic-jp6.tar\" \"$URL\" && break; else wget -c -O \"$TMP_PATH\" --progress=bar:force --tries=3 --waitretry=5 --retry-connrefused --timeout=60 --user-agent=\"Mozilla/5.0\" --no-check-certificate \"$URL\" 2>&1 && mv \"$TMP_PATH\" \"$TAR_PATH\" && break; fi; echo \"[warn] attempt $i failed, retrying in 10s...\"; sleep 10; done; if [ ! -f \"$TAR_PATH\" ]; then rm -f \"$TMP_PATH\"; echo \"Download failed after $MAX_RETRY attempts\"; exit 1; fi; echo \"[ok] downloaded to $TAR_PATH\"'",
533+
"bash -lc 'set -e; echo \"[4/4] Load Docker image...\"; TAR_PATH=$HOME/.cache/seeed-ros1-jp6/ros-noetic-jp6.tar; sudo docker load -i \"$TAR_PATH\"; echo \"[ok] Image loaded:\"; sudo docker images ros:noetic; echo; echo \"Verify: sudo docker run --rm ros:noetic rosversion -d\"'"
534+
],
535+
"run_cmds": [],
536+
"clean_cmds": [
537+
"bash -lc 'rm -rf $HOME/.cache/seeed-ros1-jp6 && echo \"[ok] cache cleared\"'"
538+
],
539+
"uninstall_cmds": [
540+
"bash -lc 'sudo docker image rm ros:noetic 2>/dev/null && echo \"[ok] image removed\" || echo \"[warn] image not found\"'",
541+
"bash -lc 'rm -rf $HOME/.cache/seeed-ros1-jp6 && echo \"[ok] cache cleared\"'"
542+
],
543+
"requirements": {
544+
"jetpack_versions": [
545+
"36.4.0",
546+
"36.4.3",
547+
"36.4.4"
548+
],
549+
"required_disk_gb": 10,
550+
"required_mem_gb": 4,
551+
"docker_enabled": true
552+
}
553+
},
554+
{
555+
"id": "jx-ros2-humble-jp6",
556+
"icon": "ROS",
557+
"name": "ROS 2 Humble (JP6)",
558+
"category": "Robotics / ROS 2",
559+
"desc": "Install ROS 2 Humble Hawksbill natively via apt on Ubuntu 22.04 (JetPack 6). Installs ros-humble-desktop. Verify with `ros2 --version`. JetPack/L4T 36.4.0, 36.4.3, 36.4.4.",
560+
"source": "jetson-examples",
561+
"example_name": "ros2-humble-jp6",
562+
"check_cmd": "bash -lc 'dpkg -s ros-humble-ros-base >/dev/null 2>&1'",
563+
"install_only": true,
564+
"install_cmds": [
565+
"bash -lc 'set -e; echo \"[1/5] Set locale...\"; if [ -f /etc/apt/sources.list.d/ros2.list ] && ! grep -qE \"^deb \" /etc/apt/sources.list.d/ros2.list 2>/dev/null; then echo \"[warn] removing malformed ros2.list\"; sudo rm -f /etc/apt/sources.list.d/ros2.list; fi; sudo apt-get install -y locales; sudo locale-gen en_US en_US.UTF-8; sudo update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8; echo \"[ok] locale set\"'",
566+
"bash -lc 'set -e; echo \"[2/5] Enable Universe repo & add ROS 2 apt source...\"; sudo apt-get install -y software-properties-common curl; sudo add-apt-repository universe -y; sudo curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -o /usr/share/keyrings/ros-archive-keyring.gpg; ARCH=$(dpkg --print-architecture); CODENAME=$(lsb_release -cs 2>/dev/null || grep UBUNTU_CODENAME /etc/os-release | cut -d= -f2); echo \"[info] arch=$ARCH codename=$CODENAME\"; sudo rm -f /etc/apt/sources.list.d/ros2.list; sudo bash -c \"echo deb [arch=$ARCH signed-by=/usr/share/keyrings/ros-archive-keyring.gpg] http://packages.ros.org/ros2/ubuntu $CODENAME main > /etc/apt/sources.list.d/ros2.list\"; echo \"[info] ros2.list: $(cat /etc/apt/sources.list.d/ros2.list)\"; echo \"[ok] ROS 2 apt source added\"'",
567+
"bash -lc 'set -e; echo \"[3/5] Update apt cache...\"; sudo apt-get update; echo \"[ok] apt updated\"'",
568+
"bash -lc 'set -e; echo \"[4/5] Install ROS 2 Humble Desktop (~2GB, please wait)...\"; sudo apt-get install -y ros-humble-desktop; echo \"[ok] ros-humble-desktop installed\"'",
569+
"bash -lc 'set -e; echo \"[5/5] Setup environment & verify...\"; grep -qxF \"source /opt/ros/humble/setup.bash\" $HOME/.bashrc || echo \"source /opt/ros/humble/setup.bash\" >> $HOME/.bashrc; source /opt/ros/humble/setup.bash; ros2 --version; echo; echo \"[ok] ROS 2 Humble installed. Re-login or run: source /opt/ros/humble/setup.bash\"'"
570+
],
571+
"run_cmds": [
572+
"bash -lc 'source /opt/ros/humble/setup.bash; echo \"ROS_DISTRO=$ROS_DISTRO\"; ros2 --version; echo; echo \"Hint: open two terminals and run talker/listener demo:\"; echo \" Terminal 1: source /opt/ros/humble/setup.bash && ros2 run demo_nodes_cpp talker\"; echo \" Terminal 2: source /opt/ros/humble/setup.bash && ros2 run demo_nodes_py listener\"'"
573+
],
574+
"clean_cmds": [],
575+
"uninstall_cmds": [
576+
"bash -lc 'sudo apt-get remove -y ros-humble-* && sudo apt-get autoremove -y && echo \"[ok] ROS 2 Humble removed\"'",
577+
"bash -lc 'sudo rm -f /etc/apt/sources.list.d/ros2.list /usr/share/keyrings/ros-archive-keyring.gpg && echo \"[ok] ROS 2 apt source removed\"'",
578+
"bash -lc 'sed -i \"/source \\/opt\\/ros\\/humble\\/setup.bash/d\" $HOME/.bashrc && echo \"[ok] removed from .bashrc\"'"
579+
],
580+
"requirements": {
581+
"jetpack_versions": [
582+
"36.4.0",
583+
"36.4.3",
584+
"36.4.4"
585+
],
586+
"required_disk_gb": 5,
587+
"required_mem_gb": 2,
588+
"docker_enabled": false
589+
}
590+
},
459591
{
460592
"id": "jx-Sheared-LLaMA-2.7B-ShareGPT",
461593
"icon": "LLM",
@@ -464,7 +596,7 @@
464596
"desc": "Launch `Sheared-LLaMA-2.7B-ShareGPT` from jetson-examples. Disk 25GB. RAM 7GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0, 36.3.0.",
465597
"source": "jetson-examples",
466598
"example_name": "Sheared-LLaMA-2.7B-ShareGPT",
467-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
599+
"check_cmd": "",
468600
"install_cmds": [
469601
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run Sheared-LLaMA-2.7B-ShareGPT'"
470602
],
@@ -493,7 +625,7 @@
493625
"desc": "Launch `stable-diffusion-webui` from jetson-examples. Disk 25GB. RAM 7GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0, 36.3.0.",
494626
"source": "jetson-examples",
495627
"example_name": "stable-diffusion-webui",
496-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
628+
"check_cmd": "",
497629
"install_cmds": [
498630
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run stable-diffusion-webui'"
499631
],
@@ -522,7 +654,7 @@
522654
"desc": "Launch `text-generation-webui` from jetson-examples. Disk 25GB. RAM 7GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0, 36.3.0.",
523655
"source": "jetson-examples",
524656
"example_name": "text-generation-webui",
525-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
657+
"check_cmd": "",
526658
"install_cmds": [
527659
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run text-generation-webui'"
528660
],
@@ -551,7 +683,7 @@
551683
"desc": "Launch `ultralytics-yolo` from jetson-examples. Disk 16GB. RAM 2GB. JetPack/L4T 32.6.1, 35.3.1, 35.4.1, 35.5.0.",
552684
"source": "jetson-examples",
553685
"example_name": "ultralytics-yolo",
554-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
686+
"check_cmd": "",
555687
"install_cmds": [
556688
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run ultralytics-yolo'"
557689
],
@@ -585,7 +717,7 @@
585717
"desc": "Launch `whisper` from jetson-examples. Disk 25GB. RAM 7GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0, 36.3.0.",
586718
"source": "jetson-examples",
587719
"example_name": "whisper",
588-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
720+
"check_cmd": "",
589721
"install_cmds": [
590722
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run whisper'"
591723
],
@@ -614,7 +746,7 @@
614746
"desc": "Launch `yolov10` from jetson-examples. Disk 20GB. RAM 4GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0, 36.3.0.",
615747
"source": "jetson-examples",
616748
"example_name": "yolov10",
617-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
749+
"check_cmd": "",
618750
"install_cmds": [
619751
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run yolov10'"
620752
],
@@ -645,7 +777,7 @@
645777
"desc": "Launch `yolov8-rail-inspection` from jetson-examples. Disk 20GB. RAM 4GB. JetPack/L4T 35.3.1, 35.4.1, 35.5.0, 36.3.0.",
646778
"source": "jetson-examples",
647779
"example_name": "yolov8-rail-inspection",
648-
"check_cmd": "bash -c 'export PATH=$HOME/.local/bin:$PATH && which reComputer' 2>/dev/null",
780+
"check_cmd": "",
649781
"install_cmds": [
650782
"bash -c 'export PATH=$HOME/.local/bin:$PATH && reComputer run yolov8-rail-inspection'"
651783
],

0 commit comments

Comments
 (0)