Skip to content

Instantly share code, notes, and snippets.

@LogCreative
Last active April 1, 2025 19:20
Show Gist options
  • Save LogCreative/71c78d90b5317f5468413b374b8bbc21 to your computer and use it in GitHub Desktop.
Save LogCreative/71c78d90b5317f5468413b374b8bbc21 to your computer and use it in GitHub Desktop.
Install Nvidia Driver for 5070 Ti on Ubuntu 24.04 (2025/03/09)
sudo apt install build-essential
sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt update
# goto tty3 by ctrl+alt+F3 now!
sudo systemctl stop gdm3
sudo apt install nvidia-driver-570
# choose MIT license one, the prioritory one can not detect 5070ti now!
reboot

According to this link, you need to install the latest CUDA to make the GPU accessible.

So follow the official instruction to install CUDA 12.8, and install pytorch-nightly later:

pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cu128
@saypal18
Copy link

Finally something that works. Thanks a lot!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment