Install Nvidia drivers with cuda 10.0, ubuntu 18.04 and tensorflow gpu 1.13
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I wanna use tensorflow-gpu 1.13, but it needs cuda 10.0, not cuda 10.1 to work. My GPU is GeForce RTX 2070, ubuntu version 18.04.
Until now I worked with CUDA 10.1 (that's are nvidia-418 drivers) and tf-gpu 1.12.
Tried to purge nvidia drivers and install older ones- nvidia-410, but ubuntu is overwriting it again to 418.
It was like:
sudo apt-get purge nvidia*
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-410
reboot
and after
nvidia-smi
still got CUDA 10.1
Have You any ideas or solution how can I install CUDA 10.0?
Grateful for help!
drivers 18.04 nvidia graphics cuda
add a comment |
I wanna use tensorflow-gpu 1.13, but it needs cuda 10.0, not cuda 10.1 to work. My GPU is GeForce RTX 2070, ubuntu version 18.04.
Until now I worked with CUDA 10.1 (that's are nvidia-418 drivers) and tf-gpu 1.12.
Tried to purge nvidia drivers and install older ones- nvidia-410, but ubuntu is overwriting it again to 418.
It was like:
sudo apt-get purge nvidia*
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-410
reboot
and after
nvidia-smi
still got CUDA 10.1
Have You any ideas or solution how can I install CUDA 10.0?
Grateful for help!
drivers 18.04 nvidia graphics cuda
1
After reboot, try this command:lsmod | grep nvidia
. If there is no output, then your installation has probably failed.
– Marmayogi
Mar 28 at 18:56
If a package is marked "hold", it is held back and the package cannot be installed, upgraded, or removed until the hold mark is removed. Now try again with these sequence of commands: 1)sudo apt-get purge nvidia*
2)sudo add-apt-repository ppa:graphics-drivers/ppa
3)sudo apt-get update
4)sudo apt-get install nvidia-410
5)sudo apt-mark hold nvidia-410
and finally 6)Reboot
. Issue command:lsmod | grep nvidia
. If there is output, then your installation is successful! If you want to unhold, @Kacper, then issue command at any time:sudo apt-mark unhold nvidia-410
.
– Marmayogi
Mar 28 at 19:56
You said in your post that after installing nvidia-410, however ubuntu was overwriting it again to 418. So let us playapt-mark hold nvidia-410
and see Ubuntu is really capable of overwriting with 418 in spite ofhold
command!
– Marmayogi
Mar 28 at 21:04
Thanks for answer. I did as You said, checked "lsmod | grep nvidia"- gives me ouput... But still my nvidia drivers are 418 and CUDA 10.1.
– Kacper
Mar 29 at 7:57
Can you please post the output oflsmod | grep nvidia
? @Kacper, your problem still persists nevertheless we will try to find out a solution.
– Marmayogi
Mar 29 at 9:13
add a comment |
I wanna use tensorflow-gpu 1.13, but it needs cuda 10.0, not cuda 10.1 to work. My GPU is GeForce RTX 2070, ubuntu version 18.04.
Until now I worked with CUDA 10.1 (that's are nvidia-418 drivers) and tf-gpu 1.12.
Tried to purge nvidia drivers and install older ones- nvidia-410, but ubuntu is overwriting it again to 418.
It was like:
sudo apt-get purge nvidia*
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-410
reboot
and after
nvidia-smi
still got CUDA 10.1
Have You any ideas or solution how can I install CUDA 10.0?
Grateful for help!
drivers 18.04 nvidia graphics cuda
I wanna use tensorflow-gpu 1.13, but it needs cuda 10.0, not cuda 10.1 to work. My GPU is GeForce RTX 2070, ubuntu version 18.04.
Until now I worked with CUDA 10.1 (that's are nvidia-418 drivers) and tf-gpu 1.12.
Tried to purge nvidia drivers and install older ones- nvidia-410, but ubuntu is overwriting it again to 418.
It was like:
sudo apt-get purge nvidia*
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt-get update
sudo apt-get install nvidia-410
reboot
and after
nvidia-smi
still got CUDA 10.1
Have You any ideas or solution how can I install CUDA 10.0?
Grateful for help!
drivers 18.04 nvidia graphics cuda
drivers 18.04 nvidia graphics cuda
edited Mar 28 at 18:44
Kacper
asked Mar 28 at 18:36
KacperKacper
11
11
1
After reboot, try this command:lsmod | grep nvidia
. If there is no output, then your installation has probably failed.
– Marmayogi
Mar 28 at 18:56
If a package is marked "hold", it is held back and the package cannot be installed, upgraded, or removed until the hold mark is removed. Now try again with these sequence of commands: 1)sudo apt-get purge nvidia*
2)sudo add-apt-repository ppa:graphics-drivers/ppa
3)sudo apt-get update
4)sudo apt-get install nvidia-410
5)sudo apt-mark hold nvidia-410
and finally 6)Reboot
. Issue command:lsmod | grep nvidia
. If there is output, then your installation is successful! If you want to unhold, @Kacper, then issue command at any time:sudo apt-mark unhold nvidia-410
.
– Marmayogi
Mar 28 at 19:56
You said in your post that after installing nvidia-410, however ubuntu was overwriting it again to 418. So let us playapt-mark hold nvidia-410
and see Ubuntu is really capable of overwriting with 418 in spite ofhold
command!
– Marmayogi
Mar 28 at 21:04
Thanks for answer. I did as You said, checked "lsmod | grep nvidia"- gives me ouput... But still my nvidia drivers are 418 and CUDA 10.1.
– Kacper
Mar 29 at 7:57
Can you please post the output oflsmod | grep nvidia
? @Kacper, your problem still persists nevertheless we will try to find out a solution.
– Marmayogi
Mar 29 at 9:13
add a comment |
1
After reboot, try this command:lsmod | grep nvidia
. If there is no output, then your installation has probably failed.
– Marmayogi
Mar 28 at 18:56
If a package is marked "hold", it is held back and the package cannot be installed, upgraded, or removed until the hold mark is removed. Now try again with these sequence of commands: 1)sudo apt-get purge nvidia*
2)sudo add-apt-repository ppa:graphics-drivers/ppa
3)sudo apt-get update
4)sudo apt-get install nvidia-410
5)sudo apt-mark hold nvidia-410
and finally 6)Reboot
. Issue command:lsmod | grep nvidia
. If there is output, then your installation is successful! If you want to unhold, @Kacper, then issue command at any time:sudo apt-mark unhold nvidia-410
.
– Marmayogi
Mar 28 at 19:56
You said in your post that after installing nvidia-410, however ubuntu was overwriting it again to 418. So let us playapt-mark hold nvidia-410
and see Ubuntu is really capable of overwriting with 418 in spite ofhold
command!
– Marmayogi
Mar 28 at 21:04
Thanks for answer. I did as You said, checked "lsmod | grep nvidia"- gives me ouput... But still my nvidia drivers are 418 and CUDA 10.1.
– Kacper
Mar 29 at 7:57
Can you please post the output oflsmod | grep nvidia
? @Kacper, your problem still persists nevertheless we will try to find out a solution.
– Marmayogi
Mar 29 at 9:13
1
1
After reboot, try this command:
lsmod | grep nvidia
. If there is no output, then your installation has probably failed.– Marmayogi
Mar 28 at 18:56
After reboot, try this command:
lsmod | grep nvidia
. If there is no output, then your installation has probably failed.– Marmayogi
Mar 28 at 18:56
If a package is marked "hold", it is held back and the package cannot be installed, upgraded, or removed until the hold mark is removed. Now try again with these sequence of commands: 1)
sudo apt-get purge nvidia*
2) sudo add-apt-repository ppa:graphics-drivers/ppa
3) sudo apt-get update
4) sudo apt-get install nvidia-410
5) sudo apt-mark hold nvidia-410
and finally 6) Reboot
. Issue command:lsmod | grep nvidia
. If there is output, then your installation is successful! If you want to unhold, @Kacper, then issue command at any time: sudo apt-mark unhold nvidia-410
.– Marmayogi
Mar 28 at 19:56
If a package is marked "hold", it is held back and the package cannot be installed, upgraded, or removed until the hold mark is removed. Now try again with these sequence of commands: 1)
sudo apt-get purge nvidia*
2) sudo add-apt-repository ppa:graphics-drivers/ppa
3) sudo apt-get update
4) sudo apt-get install nvidia-410
5) sudo apt-mark hold nvidia-410
and finally 6) Reboot
. Issue command:lsmod | grep nvidia
. If there is output, then your installation is successful! If you want to unhold, @Kacper, then issue command at any time: sudo apt-mark unhold nvidia-410
.– Marmayogi
Mar 28 at 19:56
You said in your post that after installing nvidia-410, however ubuntu was overwriting it again to 418. So let us play
apt-mark hold nvidia-410
and see Ubuntu is really capable of overwriting with 418 in spite of hold
command!– Marmayogi
Mar 28 at 21:04
You said in your post that after installing nvidia-410, however ubuntu was overwriting it again to 418. So let us play
apt-mark hold nvidia-410
and see Ubuntu is really capable of overwriting with 418 in spite of hold
command!– Marmayogi
Mar 28 at 21:04
Thanks for answer. I did as You said, checked "lsmod | grep nvidia"- gives me ouput... But still my nvidia drivers are 418 and CUDA 10.1.
– Kacper
Mar 29 at 7:57
Thanks for answer. I did as You said, checked "lsmod | grep nvidia"- gives me ouput... But still my nvidia drivers are 418 and CUDA 10.1.
– Kacper
Mar 29 at 7:57
Can you please post the output of
lsmod | grep nvidia
? @Kacper, your problem still persists nevertheless we will try to find out a solution.– Marmayogi
Mar 29 at 9:13
Can you please post the output of
lsmod | grep nvidia
? @Kacper, your problem still persists nevertheless we will try to find out a solution.– Marmayogi
Mar 29 at 9:13
add a comment |
0
active
oldest
votes
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
});
}
});
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%2f1129483%2finstall-nvidia-drivers-with-cuda-10-0-ubuntu-18-04-and-tensorflow-gpu-1-13%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
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%2f1129483%2finstall-nvidia-drivers-with-cuda-10-0-ubuntu-18-04-and-tensorflow-gpu-1-13%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
1
After reboot, try this command:
lsmod | grep nvidia
. If there is no output, then your installation has probably failed.– Marmayogi
Mar 28 at 18:56
If a package is marked "hold", it is held back and the package cannot be installed, upgraded, or removed until the hold mark is removed. Now try again with these sequence of commands: 1)
sudo apt-get purge nvidia*
2)sudo add-apt-repository ppa:graphics-drivers/ppa
3)sudo apt-get update
4)sudo apt-get install nvidia-410
5)sudo apt-mark hold nvidia-410
and finally 6)Reboot
. Issue command:lsmod | grep nvidia
. If there is output, then your installation is successful! If you want to unhold, @Kacper, then issue command at any time:sudo apt-mark unhold nvidia-410
.– Marmayogi
Mar 28 at 19:56
You said in your post that after installing nvidia-410, however ubuntu was overwriting it again to 418. So let us play
apt-mark hold nvidia-410
and see Ubuntu is really capable of overwriting with 418 in spite ofhold
command!– Marmayogi
Mar 28 at 21:04
Thanks for answer. I did as You said, checked "lsmod | grep nvidia"- gives me ouput... But still my nvidia drivers are 418 and CUDA 10.1.
– Kacper
Mar 29 at 7:57
Can you please post the output of
lsmod | grep nvidia
? @Kacper, your problem still persists nevertheless we will try to find out a solution.– Marmayogi
Mar 29 at 9:13