本文主要是介绍Network Repo Installation for Ubuntu(gds),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
The new GPG public key for the CUDA repository is 3bf863cc. This must be enrolled on the system, either using the cuda-keyring
package or manually; the apt-key
command is deprecated and not recommended.
-
Install the new cuda-keyring package:
wget https://developer.download.nvidia.com/compute/cuda/repos/$distro/$arch/cuda-keyring_1.1-1_all.deb sudo dpkg -i cuda-keyring_1.1-1_all.deb
where
$distro/$arch
should be replaced by one of the following:-
ubuntu1604/x86_64
-
ubuntu1804/cross-linux-sbsa
-
ubuntu1804/ppc64el
-
ubuntu1804/sbsa
-
ubuntu1804/x86_64
-
ubuntu2004/cross-linux-aarch64
-
ubuntu2004/arm64
-
ubuntu2004/cross-linux-sbsa
-
ubuntu2004/sbsa
-
ubuntu2004/x86_64
-
ubuntu2204/sbsa
-
ubuntu2204/x86_64
Note
arm64-Jetson repos:
-
native:
$distro/arm64
-
cross:
$distro/cross-linux-aarch64
sudo dpkg -i cuda-keyring_1.1-1_all.deb
-
-
Or if you are unable to install the
cuda-keyring
package, you can optionally:-
Enroll the new signing key manually:
wget https://developer.download.nvidia.com/compute/cuda/repos/<distro>/<arch>/cuda-archive-keyring.gpg sudo mv cuda-archive-keyring.gpg /usr/share/keyrings/cuda-archive-keyring.gpg
-
Enable the network repository:
echo "deb [signed-by=/usr/share/keyrings/cuda-archive-keyring.gpg] https://developer.download.nvidia.com/compute/cuda/repos/<distro>/<arch>/ /" | sudo tee /etc/apt/sources.list.d/cuda-<distro>-<arch>.list
-
Add pin file to prioritize CUDA repository:
wget https://developer.download.nvidia.com/compute/cuda/repos/<distro>/<arch>/cuda-<distro>.pin sudo mv cuda-<distro>.pin /etc/apt/preferences.d/cuda-repository-pin-600
-
这篇关于Network Repo Installation for Ubuntu(gds)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!