Ubuntu 20.04 RTX 3090 cuda cuDNN driver A memorandum of installation.
On Pytorch's HP, check the version of cuda → change to cuda 11.0.
Disable nouveau Create /etc/modprobe.d/blacklist-nouveau.conf and blacklist nouveau Write options nouveau modeset = 0.
sudo update-initramfs -u sudo reboot Apply in
https://k-hyoda.hatenablog.com/entry/2020/07/09/223907
https://developer.nvidia.com/cuda-11.0-update1-download-archive?target_os=Linux&target_arch=x86_64&target_distro=Ubuntu&target_version=2004&target_type=deblocal
The version of cuDNN was changed from Ampere and cuda 11.0 to 8.05. https://docs.nvidia.com/deeplearning/cudnn/support-matrix/index.html
Download cuDNN8.05 for cuda11.0 from the site https://developer.nvidia.com/rdp/cudnn-download
Install cuDNN according to the site with dpkg https://docs.nvidia.com/deeplearning/cudnn/install-guide/index.html#installlinux-deb
Write the path in .bashrc
export PATH="/usr/local/cuda/bin:
source ~/.bashrc Apply at.
If you get an error that libnvidia is in the way and cannot be installed, sudo apt-get purge libnvidia* Deleted with.
sudo apt-get purge 'nvidia-*' sudo apt-get purge 'cuda-*' sudo apt-get purge "libcudnn8*" sudo apt autoremove sudo apt update sudo apt upgrade
https://contentsviewer.work/Master/Ubuntu/Install/nvidia-tf/nvidia-tf
Recommended Posts