Last active
August 20, 2021 07:01
-
-
Save neibla/a6001739cae707fcd26d2f20d6ec7521 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
sudo apt-get purge nvidia-* | |
sudo apt autoremove --purge cuda* | |
sudo apt-get purge cuda* | |
sudo apt autoremove | |
sudo rm -rf /usr/local/cuda* | |
sudo reboot | |
setup with lambda | |
https://lambdalabs.com/lambda-stack-deep-learning-software | |
LAMBDA_REPO=$(mktemp) && \ | |
wget -O${LAMBDA_REPO} https://lambdalabs.com/static/misc/lambda-stack-repo.deb && \ | |
sudo dpkg -i ${LAMBDA_REPO} && rm -f ${LAMBDA_REPO} && \ | |
sudo apt-get update && sudo apt-get install -y lambda-stack-cuda | |
sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment