Skip to content

Instantly share code, notes, and snippets.

@thetonus
Created December 5, 2019 00:06
Show Gist options
  • Save thetonus/fb49120262f0c8ba16791e9c18564156 to your computer and use it in GitHub Desktop.
Save thetonus/fb49120262f0c8ba16791e9c18564156 to your computer and use it in GitHub Desktop.
Deep learning install....
# After install Ubuntu 18.04, run this script by the folks of Lambda Labs.
# Better to let the pros set up your machine - they handle everything, including CUDA and NVIDIA stuff.
# 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment