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
glxinfo -B |
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
# See: https://wiki.debian.org/NvidiaGraphicsDrivers | |
# (sudo) Modify /etc/apt/sources.list | |
sudo apt update | |
sudo apt install nvidia-driver firmware-misc-nonfree | |
sudo reboot |
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
1. Install the Nvidia driver (see ). | |
2. Install CUDA: | |
sudo apt install linux-headers-$(uname -r) gcc make nvidia-cuda-dev nvidia-cuda-toolkit nvtop | |
3. Test: | |
nvcc -V | |
nvtop |
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
0. See: | |
https://www.tensorflow.org/install/source#tested_build_configurations | |
1. Install Miniconda from https://docs.anaconda.com/free/miniconda/ | |
cd ~/Downloads | |
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh | |
bash Miniconda3-latest-Linux-x86_64.sh -b -u -p ~/miniconda3 | |
# rm -r Miniconda3-latest-Linux-x86_64.sh # (optional) |
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
1. Install MELPA: | |
1.1 Add: | |
(require 'package) | |
(setq package-archives '(("melpa" . "https://melpa.org/packages/") | |
("org" . "https://orgmode.org/elpa/") | |
("gnu" . "https://elpa.gnu.org/packages/"))) | |
(package-initialize) |
OlderNewer