Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save gmp-prem/3f4d483898ead4384ece5e1add6506f4 to your computer and use it in GitHub Desktop.

Select an option

Save gmp-prem/3f4d483898ead4384ece5e1add6506f4 to your computer and use it in GitHub Desktop.
installing azure kinect dk driver on ubuntu 20 (using ubuntu18 repo)
# official website for azure kinect driver sdk
# currently, sdk supports up to ubuntu 18 only
https://docs.microsoft.com/en-us/azure/kinect-dk/sensor-sdk-download
curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo apt-add-repository https://packages.microsoft.com/ubuntu/18.04/prod
curl -sSL https://packages.microsoft.com/config/ubuntu/18.04/prod.list | sudo tee /etc/apt/sources.list.d/microsoft-prod.list
curl -sSL https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo apt-get update
sudo apt install libk4a1.3-dev
sudo apt install libk4abt1.0-dev
sudo apt install k4a-tools=1.3.0
@gmp-prem
Copy link
Author

gmp-prem commented Aug 3, 2022

can install and use normallly, but when update the local repo, the ubuntu will alert that the repo key from ubuntu 18 is error

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment