1. WSLのインストール
コントローパネルを開ける。
プログラム > Windowsの機能の有効化または無効化 にいどうする。
以下の3つを有効にする。
- Linux 用 Windows サブシステム
- Windows ハイパーバイザー プラットホーム
- 仮想マシン プラットホーム
インストール後は再起動する。
管理者としてWindows PowerShellを開ける。
wsl -l -o
のコマンドでディストリビューションを確認する。
wsl --install <ディストリビューション名>
でインストールする。
2. CUDAの設定
タスクマネージャーを開ける。
プロセスに移動して、GPUを確認する。
下記よりNVIDIAのドライバーをインストールする。
インストーラーを実行する。
インストール後は再起動する。
sudo apt-key del 7fa2af80
で古いGPGキーを削除する。
以下のコマンドを順番に入力して、CUDA Toolkitをインストールする。
sudo install gcc
sudo wget https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda_11.8.0_520.61.05_linux.run
-
sudo sh cuda_11.8.0_520.61.05_linux.run
accept
を入力する。
┌──────────────────────────────────────────────────────────────────────────────┐
│ End User License Agreement │
│ -------------------------- │
│ │
│ NVIDIA Software License Agreement and CUDA Supplement to │
│ Software License Agreement. Last updated: October 8, 2021 │
│ │
│ The CUDA Toolkit End User License Agreement applies to the │
│ NVIDIA CUDA Toolkit, the NVIDIA CUDA Samples, the NVIDIA │
│ Display Driver, NVIDIA Nsight tools (Visual Studio Edition), │
│ and the associated documentation on CUDA APIs, programming │
│ model and development tools. If you do not agree with the │
│ terms and conditions of the license agreement, then do not │
│ download or use the software. │
│ │
│ Last updated: October 8, 2021. │
│ │
│ │
│ Preface │
│ ------- │
│ │
│──────────────────────────────────────────────────────────────────────────────│
│ Do you accept the above EULA? (accept/decline/quit): │
│ accept │
└──────────────────────────────────────────────────────────────────────────────┘
以下の3つを選択する。
- CUDA Toolkit 11.8
- CUDA Demo Suite 11.8
- Cuda Documentation 11.8
選択した後は、Installを選択してインストールする。
┌──────────────────────────────────────────────────────────────────────────────┐
│ CUDA Installer │
│ + [X] CUDA Toolkit 11.8 │
│ [X] CUDA Demo Suite 11.8 │
│ [X] CUDA Documentation 11.8 │
│ - [ ] Kernel Objects │
│ [ ] nvidia-fs │
│ Options │
│ Install │
│ │
│ │
│ │
│ │
│ │
│ │
│ │
│ │
│ │
│ │
│ │
│ │
│ │
│ │
│ Up/Down: Move | Left/Right: Expand | 'Enter': Select | 'A': Advanced options │
└──────────────────────────────────────────────────────────────────────────────┘
3. GPUの使用可の確認
sudo apt install python3.10-venv
で仮想環境を作るためのパッケージをインストールする。
以下のコマンドを使って、仮想環境を作ってそれを有効にする。