Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debug ZED Install In Example Repo #100

Closed
wants to merge 8 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions scripts/install_sys_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -187,10 +187,11 @@ if [ "$zed" = true ]; then
sudo /lib/systemd/systemd-udevd --daemon # starting a udev daemon
wget https://download.stereolabs.com/zedsdk/4.1/cu121/ubuntu22 -O ubuntu22 # download installer
sudo chmod +x ubuntu22 # make installer executable
./ubuntu22 -- silent skip_cuda skip_od_module skip_hub skip_tools # run installer
sudo chown $USER:$USER ubuntu22 # change ownership of installer
sudo ./ubuntu22 -- silent skip_cuda skip_od_module skip_hub skip_tools # run installer
sudo chown -R $USER:$USER /usr/local/zed # change ownership of zed sdk
sudo udevadm control --reload-rules && sudo udevadm trigger # activating udev rules
rm ubuntu22 # remove installer
sudo rm ubuntu22 # remove installer
sudo usermod -a -G video ${USER} # add user to video group

# granting permissions for python dist-packages because zed SDK installs a bunch of these necessary for colcon
Expand Down