Last active
March 29, 2019 13:26
-
-
Save s1carii/634afdf9fd4aad6163b635629b76fb58 to your computer and use it in GitHub Desktop.
LambdaStack install on Ubuntu 18.04
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
#LambdaStack install on Ubuntu 18.04 from https://lambdalabs.com/lambda-stack-deep-learning-software on 1/23/19 | |
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