Ubuntu installs multiple versions of CUDA and switches at any time

Ubuntu installs multiple versions of CUDA and switches at any time

I will not introduce what CUDA is, but will directly talk about how to achieve the coexistence and real-time switching of multiple CUDA versions.

1. Install multiple versions of CUDA

Here, we take cuda9-1 version and cuda9-0 version as examples (it doesn't matter which one you install first)
First, select the cuda version you need in the cuda version library.

Then, select the corresponding installation package. Here, select the runfile type installation file so that you can set the installation path of each cuda later.

After the download is complete, we use the cd command to enter the directory where the cuda_8.0.61_375.26_linux.run file is located, and then run the following instructions to install it (note the file name, the front cuda_8.0.61 represents the cuda version, and the back 375.26 represents the corresponding NVIDIA driver version. Here I use the installation process of cuda8.0 as an example, and the same applies to 9.0 and 9.1)

During the installation process, you need to pay attention when establishing a soft link. If you are installing cuda for the first time, then you should enter y (yes) without any doubt. However, if you are installing an additional version of cuda, whether to choose y (yes) depends on your specific needs. In short, if you want to enable the currently installed version of cuda, select y. If you just want to install this version and do not want to enable it for the time being, select n.

#First execute the following command to install related dependencies,
#Otherwise, you will get a `Missing recommended library` error sudo apt-get install freeglut3-dev build-essential libx11-dev libxmu-dev libxi-dev libgl1-mesa-glx libglu1-mesa libglu1-mesa-dev 


sudo sh cuda_8.0.61_375.26_linux.run #Start installation#..A bunch of protocol instructions...
#Press q to exit the protocol description directly.
zerozone@zerozone: accept/decline/quit: accept #Accept the agreement Install NVIDIA Accelerated Graphics Driver for Linux-x86_64 375.26? 
y)es/(n)o/(q)uit: n #Whether the graphics driver package is installed. Since the graphics driver has been installed, select n

Install the CUDA 8.0 Toolkit?
(y)es/(n)o/(q)uit: y #Whether to install the toolkit, select y

Enter Toolkit Location
[ default is /usr/local/cuda-8.0 ]: #Toolkit installation address, press Enter by default Do you want to install a symbolic link at /usr/local/cuda?
(y)es/(n)o/(q)uit: y #Add link**Note this link. If you have installed another version of cuda before, unless you are sure you want to use this new version of cuda, it is recommended to select no here, because specifying this link will point cuda to this new version**

Install the CUDA 8.0 Samples?
(y)es/(n)o/(q)uit: y #Install samplesEnter CUDA Samples Location
 [ default is /root ]: #The default installation address is acceptable# ***Installation information***
Installing the CUDA Toolkit in /usr/local/cuda-8.0 ...

Missing recommended library: libXi.so
Missing recommended library: libXmu.so
#Note that there is a Missing recommended library error.
#This is because the blogger did not add the initial command to install related dependencies when installing for the first time.
#After I added the dependency and installed it again, there was no Missing error Installing the CUDA Samples in /root ...
Copying samples to /root/NVIDIA_CUDA-8.0_Samples now...
Finished copying samples.

===========
= Summary =
===========
Driver: Not Selected
Toolkit: Installed in /usr/local/cuda-8.0
Samples: Installed in /root, but missing recommended libraries

Please make sure that
 - PATH includes /usr/local/cuda-8.0/bin
 - LD_LIBRARY_PATH includes /usr/local/cuda-8.0/lib64, or, add /usr/local/cuda-8.0/lib64 to /etc/ld.so.conf and run ldconfig as root

To uninstall the CUDA Toolkit, run the uninstall script in /usr/local/cuda-8.0/bin

Please see CUDA_Installation_Guide_Linux.pdf in /usr/local/cuda-8.0/doc/pdf for detailed information on setting up CUDA.

***WARNING: Incomplete installation! This installation did not install the CUDA Driver. A driver of version at least 361.00 is required for CUDA 8.0 functionality to work.

To install the driver using this installer, run the following command, replacing <CudaInstaller> with the name of this run file:

  sudo <CudaInstaller>.run -silent -driver

Logfile is /tmp/cuda_install_6388.log  
# ***Installation Complete***

Configure CUDA related environment variables

Modify the ~/.bashrc file (or ~/.zhsrc) and add environment variables at the end of the file

The official installation process of Tensorflow requires attention to: configure PATH and LD_LIBRARY_PATH and CUDA_HOME environment variables.

vim ~/.bashrc #Modify the configuration file (if you are using zsh, you need to modify the ~/.zshrc file)

#Add export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/lib64 at the end of the file
export PATH=$PATH:/usr/local/cuda/bin
export CUDA_HOME=$CUDA_HOME:/usr/local/cuda

Use the same method to download another version of the cuda toolkit you want to install (note that it is a runfile type). During the installation process, pay attention to the selection of cuda symbol link (select y for the first installation and select n for installing an additional version)

2. Switching between multiple versions of cuda

After installing multiple cuda versions, you can view the cuda version you installed in /usr/local/ directory, as shown in the following figure:

Here, cuda-9.0 and cuda-9.1 are the two cuda versions we installed, and cuda is a soft link that points to the cuda version we specified (note that when setting the environment variable above, cuda is used instead of cuda-9.0 and cuda-9.1. This is mainly to facilitate us to switch the cuda version so that we don’t have to go to the value of the environment variable every time)

You can use the stat command to view which cuda version the current cuda soft link points to, as follows:

As you can see, the file type is a symbolic link, and the directory it points to is /usr/local/cuda-9.0 . When we want to use the cuda-9.1 version, we just need to delete the soft link and then re-establish a soft link pointing to the cuda-9.1 version (note that the name is still cuda, because it must be consistent with the setting in the bashrc file)

sudo rm -rf cuda
sudo ln -s /usr/local/cuda-9.1 /usr/local/cuda

If you want to switch to another version of cuda, just change the correct path of cdua when creating a soft link.

This is the end of this article about installing multiple versions of CUDA on Ubuntu and switching at any time. For more information about installing multiple versions of CUDA on Ubuntu, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Implementation of installing and uninstalling CUDA and CUDNN in Ubuntu
  • Detailed tutorial on installing CUDA9.0 on Ubuntu16.04
  • Steps to install cuda10.1 on Ubuntu 20.04 (graphic tutorial)
  • Ubuntu installation cuda10.1 driver implementation steps
  • Ubuntu 20.04 CUDA & cuDNN Installation Method (Graphical Tutorial)
  • Detailed tutorial on installing nvidia driver + CUDA + cuDNN in Ubuntu 16.04
  • How to install multiple versions of CUDA in ubuntu16.04
  • Installation of CUDA10.0 and problems in Ubuntu

<<:  Detailed analysis of the principles and usage of MySQL views

>>:  How to modify the master-slave replication options in MySQL online

Recommend

Summary of MySQL date and time functions (MySQL 5.X)

1. MySQL gets the current date and time function ...

Common scenarios and avoidance methods for index failure in MySQL

Preface I have read many similar articles before,...

HTML pop-up div is very useful to realize mobile centering

Copy code The code is as follows: <!DOCTYPE ht...

JS implements simple calendar effect

This article shares the specific code of JS to ac...

MYSQL subquery and nested query optimization example analysis

Check the top 100 highest scores in game history ...

How to set up jar application startup on CentOS7

Pitfalls encountered during project deployment Wh...

How to implement Docker Registry to build a private image warehouse

The image of the microservice will be uploaded to...

Analysis of Sysbench's benchmarking process for MySQL

Preface 1. Benchmarking is a type of performance ...

Summary of discussion on nginx cookie validity period

Every visit will generate Cookie in the browser, ...

MySQL chooses the appropriate data type for id

Table of contents Summary of Distributed ID Solut...

Detailed explanation on how to install MySQL database on Alibaba Cloud Server

Preface Since I needed to install Zookeeper durin...

MySQL 8.0.23 installation super detailed tutorial

Table of contents Preface 1. Download MySQL from ...

Practical example of nested routes in vue.js Router

Table of contents Preface Setting up with Vue CLI...

An article to understand the usage of typeof in js

Table of contents Base Return Type String and Boo...