# Cuda for Ubuntu18.04 | |
CUDA_REPO_PKG=cuda-repo-ubuntu1804_10.1.243-1_amd64.deb | |
wget -O /tmp/${CUDA_REPO_PKG} http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/${CUDA_REPO_PKG} | |
sudo dpkg -i /tmp/${CUDA_REPO_PKG} | |
sudo apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/7fa2af80.pub | |
rm -f /tmp/${CUDA_REPO_PKG} | |
sudo apt-get update | |
sudo apt-get install cuda-drivers -y | |
sudo apt-get install cuda -y | |
# Git and screen | |
sudo apt install git-all | |
sudo apt-get install screen | |
# Conda | |
wget https://repo.anaconda.com/archive/Anaconda3-2019.07-Linux-x86_64.sh | |
bash Anaconda3-2019.07-Linux-x86_64.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment