Skip to content

Commit

Permalink
chore: add x86 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ConnorNeed committed Jan 1, 2025
1 parent d80b92b commit a47692f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion firstTimeInstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,11 @@ source ~/.bashrc

echo "Downloading ZED SDK ..."
cd /tmp
curl -L https://download.stereolabs.com/zedsdk/4.2/l4t36.4/jetsons?_gl=1*1x76wtq*_gcl_au*MTkzMjE2NTcwLjE3MzQyOTE5OTg -o zed_sdk_installer.run
if [ "$(uname -m)" == "aarch64" ]; then
curl -L https://download.stereolabs.com/zedsdk/4.2/l4t36.4/jetsons -o zed_sdk_installer.run
else
curl -L https://download.stereolabs.com/zedsdk/4.2/cu12/ubuntu22 -o zed_sdk_installer.run
fi
chmod +x zed_sdk_installer.run
./zed_sdk_installer.run -- silent
echo "Finished downloading ZED SDK ..."
Expand Down

0 comments on commit a47692f

Please sign in to comment.