Many deep learning teams have software that depends on Ubuntu 16.04 (and not 18.04). However, the installation process for 16.04 has some quirks with the TensorBook. This tutorial walks you through the entire process of installing 16.04 from scratch with Lambda Stack.
[Del]
during your boot sequence.Install Ubuntu
in the GRUB menu and hit [e]
.linux
line acpi_os_name=Linux acpi_osi= acpi_backlight=vendor modprobe.blacklist=nouveau
. Hit [F10]
to boot.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
That's it! You should now have a working TensorBook installed with Ubuntu 16.04.5 and Lambda Stack.