Skip to content

Instantly share code, notes, and snippets.

View MoshiurRahmanFaisal's full-sized avatar
🚀
Learning

Moshiur Rahman Faisal MoshiurRahmanFaisal

🚀
Learning
View GitHub Profile
@MoshiurRahmanFaisal
MoshiurRahmanFaisal / Install CUDA 11.3 and CUDNN 8.2.1.32 in Ubuntu 20.04 LTS
Last active September 20, 2022 06:56
A simple guideline for installing CUDA 11.3 and CUDNN 8.2.1.32 in Ubuntu 20.04 LTS. CUDA 11.3 supports maximum frameworks or libraries like Pytorch & TensorRT with easy installation guide.
#!/bin/bash
### Step 1: Verify your gpu is cuda enable ###
lspci | grep -i nvidia
### Step 2: If you have a previous installation remove it first ###
sudo apt-get purge nvidia*
@MoshiurRahmanFaisal
MoshiurRahmanFaisal / Build and Run NVIDIA Docker with CUDA 11.3 on Pop!_OS or Ubuntu 20.04 LTS
Last active February 23, 2024 11:08
A simple guide to install Docker and Nvidia Docker to get CUDA Support on Docker Images
#!/bin/bash
### Step 1: Install Docker ###
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
### Step 2: Restart the Docker ###