From cbb869df5d90b278ca221f032c61fadc60388980 Mon Sep 17 00:00:00 2001 From: "Azalea (on HyDEV-Daisy)" Date: Fri, 1 Apr 2022 02:29:33 -0400 Subject: [PATCH] [F] Fix tutorial for arch --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 695f10c..aec0d02 100644 --- a/README.md +++ b/README.md @@ -51,12 +51,19 @@ python -c "from tensorflow.python.client import device_lib; print(device_lib.lis ### Arch Linux (CUDA) +#### Install CUDA + +```shell +yay -S downgrade +sudo pacman -S tensorflow-cuda +sudo downgrade 'cuda=11.2.2' 'cudnn=8.1.1.33' +``` + #### Python (3.9.11) ```sh python -m venv venv source ./venv/bin/activate pip install -r requirements-win-cuda.txt -sudo pacman -S tensorflow-cuda python -c "from tensorflow.python.client import device_lib; print(device_lib.list_local_devices())" -``` \ No newline at end of file +```