Last active
February 8, 2024 01:08
-
-
Save carlesloriente/2dc56c44afc4b8604f231d083268033f to your computer and use it in GitHub Desktop.
Install Nvidia drivers on EC2 Instance with CentOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo yum -y install gcc kernel kernel-devel tbb tbb-devel | |
echo "Download and install AWS NVIDIA GPU Drivers"; | |
curl -o NVIDIA.run https://s3.amazonaws.com/ec2-linux-nvidia-drivers/grid-10.0/NVIDIA-Linux-x86_64-440.43-grid.run | |
sudo /bin/sh ./NVIDIA.run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://www.notesoncloudcomputing.com/aws/nvidia/2020/01/14/install-nvidia-drivers-ec2-instances/