Offline installation of CUDA runtime package
I am attempting to install the CUDA runtime package on a machine with no access to the internet.
Current method:
curl -o /tmp/cuda_key.pub
http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/7fa2af80.pub
apt-key add /tmp/cuda_key.pub
curl -o /tmp/cuda/cuda_install.deb "https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/cuda-repo-ubuntu1604_9.1.85-1_amd64.deb"
dpkg -i /tmp/cuda/cuda_install.deb
apt-get update && apt-get --download-only install -y --allow-unauthenticated cuda-runtime-9-2=9.2.148*
When I try install this on a different machine by running the following command it fails:
dpkg -i *.deb
This method works only when I have access to the internet to fix the broken packages via
apt install -f
Is there a method currently to install cuda-runtime-9-2=9.2.148* completely offline?
Thanks for your time.
apt nvidia cuda offline
New contributor
add a comment |
I am attempting to install the CUDA runtime package on a machine with no access to the internet.
Current method:
curl -o /tmp/cuda_key.pub
http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/7fa2af80.pub
apt-key add /tmp/cuda_key.pub
curl -o /tmp/cuda/cuda_install.deb "https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/cuda-repo-ubuntu1604_9.1.85-1_amd64.deb"
dpkg -i /tmp/cuda/cuda_install.deb
apt-get update && apt-get --download-only install -y --allow-unauthenticated cuda-runtime-9-2=9.2.148*
When I try install this on a different machine by running the following command it fails:
dpkg -i *.deb
This method works only when I have access to the internet to fix the broken packages via
apt install -f
Is there a method currently to install cuda-runtime-9-2=9.2.148* completely offline?
Thanks for your time.
apt nvidia cuda offline
New contributor
add a comment |
I am attempting to install the CUDA runtime package on a machine with no access to the internet.
Current method:
curl -o /tmp/cuda_key.pub
http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/7fa2af80.pub
apt-key add /tmp/cuda_key.pub
curl -o /tmp/cuda/cuda_install.deb "https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/cuda-repo-ubuntu1604_9.1.85-1_amd64.deb"
dpkg -i /tmp/cuda/cuda_install.deb
apt-get update && apt-get --download-only install -y --allow-unauthenticated cuda-runtime-9-2=9.2.148*
When I try install this on a different machine by running the following command it fails:
dpkg -i *.deb
This method works only when I have access to the internet to fix the broken packages via
apt install -f
Is there a method currently to install cuda-runtime-9-2=9.2.148* completely offline?
Thanks for your time.
apt nvidia cuda offline
New contributor
I am attempting to install the CUDA runtime package on a machine with no access to the internet.
Current method:
curl -o /tmp/cuda_key.pub
http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/7fa2af80.pub
apt-key add /tmp/cuda_key.pub
curl -o /tmp/cuda/cuda_install.deb "https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/cuda-repo-ubuntu1604_9.1.85-1_amd64.deb"
dpkg -i /tmp/cuda/cuda_install.deb
apt-get update && apt-get --download-only install -y --allow-unauthenticated cuda-runtime-9-2=9.2.148*
When I try install this on a different machine by running the following command it fails:
dpkg -i *.deb
This method works only when I have access to the internet to fix the broken packages via
apt install -f
Is there a method currently to install cuda-runtime-9-2=9.2.148* completely offline?
Thanks for your time.
apt nvidia cuda offline
apt nvidia cuda offline
New contributor
New contributor
New contributor
asked Dec 18 at 6:23
Tagger5926
1
1
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
According to documentation of CUDA 9.2 it should be possible. Please also take care about your Ubuntu version. CUDA 9.2 supports Ubuntu 16.04 and 17.10. If you want to use Ubuntu 18.04 then use CUDA 10.
Install repository meta-data
$ sudo dpkg -i cuda-repo-<distro>_<version>_<architecture>.deb
Installing the CUDA public GPG key
When installing using the local repo:
$ sudo apt-key add /var/cuda-repo-<version>/7fa2af80.pub
Update the Apt repository cache
$ sudo apt-get update
Install CUDA
$ sudo apt-get install cuda
Please check also the pre and post installation steps in documentation!
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Tagger5926 is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1102745%2foffline-installation-of-cuda-runtime-package%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
According to documentation of CUDA 9.2 it should be possible. Please also take care about your Ubuntu version. CUDA 9.2 supports Ubuntu 16.04 and 17.10. If you want to use Ubuntu 18.04 then use CUDA 10.
Install repository meta-data
$ sudo dpkg -i cuda-repo-<distro>_<version>_<architecture>.deb
Installing the CUDA public GPG key
When installing using the local repo:
$ sudo apt-key add /var/cuda-repo-<version>/7fa2af80.pub
Update the Apt repository cache
$ sudo apt-get update
Install CUDA
$ sudo apt-get install cuda
Please check also the pre and post installation steps in documentation!
add a comment |
According to documentation of CUDA 9.2 it should be possible. Please also take care about your Ubuntu version. CUDA 9.2 supports Ubuntu 16.04 and 17.10. If you want to use Ubuntu 18.04 then use CUDA 10.
Install repository meta-data
$ sudo dpkg -i cuda-repo-<distro>_<version>_<architecture>.deb
Installing the CUDA public GPG key
When installing using the local repo:
$ sudo apt-key add /var/cuda-repo-<version>/7fa2af80.pub
Update the Apt repository cache
$ sudo apt-get update
Install CUDA
$ sudo apt-get install cuda
Please check also the pre and post installation steps in documentation!
add a comment |
According to documentation of CUDA 9.2 it should be possible. Please also take care about your Ubuntu version. CUDA 9.2 supports Ubuntu 16.04 and 17.10. If you want to use Ubuntu 18.04 then use CUDA 10.
Install repository meta-data
$ sudo dpkg -i cuda-repo-<distro>_<version>_<architecture>.deb
Installing the CUDA public GPG key
When installing using the local repo:
$ sudo apt-key add /var/cuda-repo-<version>/7fa2af80.pub
Update the Apt repository cache
$ sudo apt-get update
Install CUDA
$ sudo apt-get install cuda
Please check also the pre and post installation steps in documentation!
According to documentation of CUDA 9.2 it should be possible. Please also take care about your Ubuntu version. CUDA 9.2 supports Ubuntu 16.04 and 17.10. If you want to use Ubuntu 18.04 then use CUDA 10.
Install repository meta-data
$ sudo dpkg -i cuda-repo-<distro>_<version>_<architecture>.deb
Installing the CUDA public GPG key
When installing using the local repo:
$ sudo apt-key add /var/cuda-repo-<version>/7fa2af80.pub
Update the Apt repository cache
$ sudo apt-get update
Install CUDA
$ sudo apt-get install cuda
Please check also the pre and post installation steps in documentation!
answered Dec 18 at 12:38
Mr.Michael.Schulze
763
763
add a comment |
add a comment |
Tagger5926 is a new contributor. Be nice, and check out our Code of Conduct.
Tagger5926 is a new contributor. Be nice, and check out our Code of Conduct.
Tagger5926 is a new contributor. Be nice, and check out our Code of Conduct.
Tagger5926 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1102745%2foffline-installation-of-cuda-runtime-package%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown