Created
July 31, 2022 05:47
-
-
Save gmp-prem/433ca99627942153bdef222c3f9d32bf to your computer and use it in GitHub Desktop.
install azure kinect driver without adding repo key
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| For the record, another method of getting the latest binaries in Ubuntu 20.04 without adding keys | |
| for apt is by simply downloading them manually from Microsoft's package repository and installing | |
| them using dpkg (i.e. dpkg -i k4a-tools_1.4.1_amd64.deb). | |
| The relevant package repository folder for k4a-tools is here and for libk4a + libk4a-dev here. | |
| k4a-tools : https://packages.microsoft.com/ubuntu/18.04/prod/pool/main/k/k4a-tools/ | |
| libk4a + libk4a-dev : https://packages.microsoft.com/ubuntu/18.04/prod/pool/main/libk/ | |
| 1. install libsoundio1 and libsoundio-dev | |
| $ sudo apt-get install libsoundio1 libsoundio-dev | |
| 2. after download, use `sudo dpkg -i {package_name}` to install the libk4a, libk4a-dev | |
| 3. install k4a-tool driver using `sudo dpkg -i {package_name}` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment