How can I verify correct CUDA is installed on my Ubuntu 16.04?












0















I want to install CUDA 8.0, but I got CUDA 7.5 when using the Nvidia provided *.deb file instead of the *.run installer.



I followed the instructions to install on the Nvidia website:



https://developer.nvidia.com/cuda-80-ga2-download-archive



I installed:
./cuda-repo-ubuntu1604-8-0-local-ga2_8.0.61-1_amd64-deb



Instructions listed on website:



`sudo dpkg -i cuda-repo-ubuntu1604-9-2-local_9.2.88-1_amd64.deb`
`sudo apt-key add /var/cuda-repo-<version>/7fa2af80.pub`
`sudo apt-get update`
`sudo apt-get install cuda`


I performed the "Verify CUDA Installation" step from this answer: https://askubuntu.com/a/799185



Results of running nvcc --version:



$ nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2015 NVIDIA Corporation
Built on Tue_Aug_11_14:27:32_CDT_2015
Cuda compilation tools, release 7.5, V7.5.17


Results from when I run the installer step a second time:



$ sudo apt install cuda
[sudo] password for USER:
Reading package lists... Done
Building dependency tree
Reading state information... Done
cuda is already the newest version (8.0.61-1).
The following packages were automatically installed and are no longer required:
linux-headers-4.13.0-36 linux-headers-4.13.0-36-generic linux-image-4.13.0-36-generic
linux-image-extra-4.13.0-36-generic
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 61 not upgraded.


Definitely Something is incorrect because when I use the *.run version of the installer from the same page, it gives me the following nvcc output:



$ nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2016 NVIDIA Corporation
Built on Tue_Jan_10_13:22:03_CST_2017
Cuda compilation tools, release 8.0, V8.0.61


Both machines have the same Nvidia Drivers installed:



$ nvidia-smi 
Wed Jun 27 08:20:03 2018
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 384.130 Driver Version: 384.130 |
|-------------------------------+----------------------+----------------------+


But the GPU's are different which should not matter because the machine giving issues has a newer graphics card in it. Nvidia GeForce GTX 1050 Ti versus 960M



To avoid conflicts and trouble with finding compatible drivers with Ubuntu 16.04, I just used the additional drivers tab on software-properties-gtk










share|improve this question























  • I have setup CUDA 9.2 in 16.04LTS. See: askubuntu.com/a/1025949/231142

    – Terrance
    Jun 27 '18 at 13:09











  • Most likely you installed the 8.0 into a local directory, and are picking up an old 7.5 install. Also, what is your PATH set to? If that were not updated for the 8.0 location, that would cause the problem too.

    – ubfan1
    Jun 27 '18 at 15:31
















0















I want to install CUDA 8.0, but I got CUDA 7.5 when using the Nvidia provided *.deb file instead of the *.run installer.



I followed the instructions to install on the Nvidia website:



https://developer.nvidia.com/cuda-80-ga2-download-archive



I installed:
./cuda-repo-ubuntu1604-8-0-local-ga2_8.0.61-1_amd64-deb



Instructions listed on website:



`sudo dpkg -i cuda-repo-ubuntu1604-9-2-local_9.2.88-1_amd64.deb`
`sudo apt-key add /var/cuda-repo-<version>/7fa2af80.pub`
`sudo apt-get update`
`sudo apt-get install cuda`


I performed the "Verify CUDA Installation" step from this answer: https://askubuntu.com/a/799185



Results of running nvcc --version:



$ nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2015 NVIDIA Corporation
Built on Tue_Aug_11_14:27:32_CDT_2015
Cuda compilation tools, release 7.5, V7.5.17


Results from when I run the installer step a second time:



$ sudo apt install cuda
[sudo] password for USER:
Reading package lists... Done
Building dependency tree
Reading state information... Done
cuda is already the newest version (8.0.61-1).
The following packages were automatically installed and are no longer required:
linux-headers-4.13.0-36 linux-headers-4.13.0-36-generic linux-image-4.13.0-36-generic
linux-image-extra-4.13.0-36-generic
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 61 not upgraded.


Definitely Something is incorrect because when I use the *.run version of the installer from the same page, it gives me the following nvcc output:



$ nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2016 NVIDIA Corporation
Built on Tue_Jan_10_13:22:03_CST_2017
Cuda compilation tools, release 8.0, V8.0.61


Both machines have the same Nvidia Drivers installed:



$ nvidia-smi 
Wed Jun 27 08:20:03 2018
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 384.130 Driver Version: 384.130 |
|-------------------------------+----------------------+----------------------+


But the GPU's are different which should not matter because the machine giving issues has a newer graphics card in it. Nvidia GeForce GTX 1050 Ti versus 960M



To avoid conflicts and trouble with finding compatible drivers with Ubuntu 16.04, I just used the additional drivers tab on software-properties-gtk










share|improve this question























  • I have setup CUDA 9.2 in 16.04LTS. See: askubuntu.com/a/1025949/231142

    – Terrance
    Jun 27 '18 at 13:09











  • Most likely you installed the 8.0 into a local directory, and are picking up an old 7.5 install. Also, what is your PATH set to? If that were not updated for the 8.0 location, that would cause the problem too.

    – ubfan1
    Jun 27 '18 at 15:31














0












0








0








I want to install CUDA 8.0, but I got CUDA 7.5 when using the Nvidia provided *.deb file instead of the *.run installer.



I followed the instructions to install on the Nvidia website:



https://developer.nvidia.com/cuda-80-ga2-download-archive



I installed:
./cuda-repo-ubuntu1604-8-0-local-ga2_8.0.61-1_amd64-deb



Instructions listed on website:



`sudo dpkg -i cuda-repo-ubuntu1604-9-2-local_9.2.88-1_amd64.deb`
`sudo apt-key add /var/cuda-repo-<version>/7fa2af80.pub`
`sudo apt-get update`
`sudo apt-get install cuda`


I performed the "Verify CUDA Installation" step from this answer: https://askubuntu.com/a/799185



Results of running nvcc --version:



$ nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2015 NVIDIA Corporation
Built on Tue_Aug_11_14:27:32_CDT_2015
Cuda compilation tools, release 7.5, V7.5.17


Results from when I run the installer step a second time:



$ sudo apt install cuda
[sudo] password for USER:
Reading package lists... Done
Building dependency tree
Reading state information... Done
cuda is already the newest version (8.0.61-1).
The following packages were automatically installed and are no longer required:
linux-headers-4.13.0-36 linux-headers-4.13.0-36-generic linux-image-4.13.0-36-generic
linux-image-extra-4.13.0-36-generic
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 61 not upgraded.


Definitely Something is incorrect because when I use the *.run version of the installer from the same page, it gives me the following nvcc output:



$ nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2016 NVIDIA Corporation
Built on Tue_Jan_10_13:22:03_CST_2017
Cuda compilation tools, release 8.0, V8.0.61


Both machines have the same Nvidia Drivers installed:



$ nvidia-smi 
Wed Jun 27 08:20:03 2018
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 384.130 Driver Version: 384.130 |
|-------------------------------+----------------------+----------------------+


But the GPU's are different which should not matter because the machine giving issues has a newer graphics card in it. Nvidia GeForce GTX 1050 Ti versus 960M



To avoid conflicts and trouble with finding compatible drivers with Ubuntu 16.04, I just used the additional drivers tab on software-properties-gtk










share|improve this question














I want to install CUDA 8.0, but I got CUDA 7.5 when using the Nvidia provided *.deb file instead of the *.run installer.



I followed the instructions to install on the Nvidia website:



https://developer.nvidia.com/cuda-80-ga2-download-archive



I installed:
./cuda-repo-ubuntu1604-8-0-local-ga2_8.0.61-1_amd64-deb



Instructions listed on website:



`sudo dpkg -i cuda-repo-ubuntu1604-9-2-local_9.2.88-1_amd64.deb`
`sudo apt-key add /var/cuda-repo-<version>/7fa2af80.pub`
`sudo apt-get update`
`sudo apt-get install cuda`


I performed the "Verify CUDA Installation" step from this answer: https://askubuntu.com/a/799185



Results of running nvcc --version:



$ nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2015 NVIDIA Corporation
Built on Tue_Aug_11_14:27:32_CDT_2015
Cuda compilation tools, release 7.5, V7.5.17


Results from when I run the installer step a second time:



$ sudo apt install cuda
[sudo] password for USER:
Reading package lists... Done
Building dependency tree
Reading state information... Done
cuda is already the newest version (8.0.61-1).
The following packages were automatically installed and are no longer required:
linux-headers-4.13.0-36 linux-headers-4.13.0-36-generic linux-image-4.13.0-36-generic
linux-image-extra-4.13.0-36-generic
Use 'sudo apt autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 61 not upgraded.


Definitely Something is incorrect because when I use the *.run version of the installer from the same page, it gives me the following nvcc output:



$ nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2016 NVIDIA Corporation
Built on Tue_Jan_10_13:22:03_CST_2017
Cuda compilation tools, release 8.0, V8.0.61


Both machines have the same Nvidia Drivers installed:



$ nvidia-smi 
Wed Jun 27 08:20:03 2018
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 384.130 Driver Version: 384.130 |
|-------------------------------+----------------------+----------------------+


But the GPU's are different which should not matter because the machine giving issues has a newer graphics card in it. Nvidia GeForce GTX 1050 Ti versus 960M



To avoid conflicts and trouble with finding compatible drivers with Ubuntu 16.04, I just used the additional drivers tab on software-properties-gtk







16.04 drivers nvidia deb cuda






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jun 27 '18 at 13:01









Paresh471Paresh471

13116




13116













  • I have setup CUDA 9.2 in 16.04LTS. See: askubuntu.com/a/1025949/231142

    – Terrance
    Jun 27 '18 at 13:09











  • Most likely you installed the 8.0 into a local directory, and are picking up an old 7.5 install. Also, what is your PATH set to? If that were not updated for the 8.0 location, that would cause the problem too.

    – ubfan1
    Jun 27 '18 at 15:31



















  • I have setup CUDA 9.2 in 16.04LTS. See: askubuntu.com/a/1025949/231142

    – Terrance
    Jun 27 '18 at 13:09











  • Most likely you installed the 8.0 into a local directory, and are picking up an old 7.5 install. Also, what is your PATH set to? If that were not updated for the 8.0 location, that would cause the problem too.

    – ubfan1
    Jun 27 '18 at 15:31

















I have setup CUDA 9.2 in 16.04LTS. See: askubuntu.com/a/1025949/231142

– Terrance
Jun 27 '18 at 13:09





I have setup CUDA 9.2 in 16.04LTS. See: askubuntu.com/a/1025949/231142

– Terrance
Jun 27 '18 at 13:09













Most likely you installed the 8.0 into a local directory, and are picking up an old 7.5 install. Also, what is your PATH set to? If that were not updated for the 8.0 location, that would cause the problem too.

– ubfan1
Jun 27 '18 at 15:31





Most likely you installed the 8.0 into a local directory, and are picking up an old 7.5 install. Also, what is your PATH set to? If that were not updated for the 8.0 location, that would cause the problem too.

– ubfan1
Jun 27 '18 at 15:31










1 Answer
1






active

oldest

votes


















0














sudo apt install nvidia-cuda-toolkit  


Without login into GUI and after installation of cuda, reboot system.






share|improve this answer








New contributor




cutiehulk2329 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















    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
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1050150%2fhow-can-i-verify-correct-cuda-is-installed-on-my-ubuntu-16-04%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









    0














    sudo apt install nvidia-cuda-toolkit  


    Without login into GUI and after installation of cuda, reboot system.






    share|improve this answer








    New contributor




    cutiehulk2329 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.

























      0














      sudo apt install nvidia-cuda-toolkit  


      Without login into GUI and after installation of cuda, reboot system.






      share|improve this answer








      New contributor




      cutiehulk2329 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.























        0












        0








        0







        sudo apt install nvidia-cuda-toolkit  


        Without login into GUI and after installation of cuda, reboot system.






        share|improve this answer








        New contributor




        cutiehulk2329 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.










        sudo apt install nvidia-cuda-toolkit  


        Without login into GUI and after installation of cuda, reboot system.







        share|improve this answer








        New contributor




        cutiehulk2329 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        share|improve this answer



        share|improve this answer






        New contributor




        cutiehulk2329 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        answered Mar 10 at 2:42









        cutiehulk2329cutiehulk2329

        11




        11




        New contributor




        cutiehulk2329 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.





        New contributor





        cutiehulk2329 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






        cutiehulk2329 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1050150%2fhow-can-i-verify-correct-cuda-is-installed-on-my-ubuntu-16-04%23new-answer', 'question_page');
            }
            );

            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







            Popular posts from this blog

            How did Captain America manage to do this?

            迪纳利

            南乌拉尔铁路局