1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

WSLを使った機械学習環境構築

Last updated at Posted at 2022-10-03

目的

WSL2を使い機械学習のための環境を構築する.

WSL2のインストール

最初に「Windowsの機能の有効化または無効化」より,「Linux用Windowsサブシステム」と「仮想マシンプラットフォーム」にチェックを入れる.一旦,再起動.

image.png

image.png

Microsoft Storeより,Ubuntuを検索してインストールをクリック.
インストール終了後,起動をクリック.
この時エラーが発生する場合は,表示されているURLにアクセスし,最新版のカーネルをインストールする.

image.png

初回起動時は数分時間がかかる.
その後,作成するusernameの入力を求められるため,任意のユーザ名を設定し,次にパスワードの設定を求められるので,パスワードを入力(パスワードは入力しても表示されないので,注意)

必要なパッケージとpythonライブラリのインストール

  • Python3
  • pip3
  • pandas
  • TensorFlow2
  • scikit-learn
  • jupyter-notebook
  • PyTorch
$ sudo su
# apt-get update
# apt-get upgrade
# apt-get install python3-pip
# pip3 install tensorflow
# pip3 install pandas
# pip3 install scikit-learn
# pip3 install notebook
# pip3 install torch
# exit
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?