Skip to content

Instantly share code, notes, and snippets.

@neibla
Created September 14, 2021 11:24
Show Gist options
  • Save neibla/4723eac273f6c0f39fbc17880cb9cc58 to your computer and use it in GitHub Desktop.
Save neibla/4723eac273f6c0f39fbc17880cb9cc58 to your computer and use it in GitHub Desktop.
Setup tensoflow/cuda/pytorch on fresh Ubuntu install
# https://lambdalabs.com/lambda-stack-deep-learning-software
# Setup tensoflow/cuda/pytorch on fresh Ubuntu install
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