Windows10にWSL/Ubuntu/Python/Pip環境を最短でインストールしたい
全くWindows、PowerShell、仮想環境、Pythonも知らない人に、実行環境構築するために教えた時のメモです。
PowerShellのコマンドプロンプトで、以下を実行します。1
Invoke-WebRequest -Uri "https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi" -OutFile "wsl_update_x64.msi"
./wsl_update_x64.msi
PowerShellのコマンドプロンプトで、以下を実行します。2
wsl --install -d Ubuntu
wsl --set-default Ubuntu
PowerShellのコマンドプロンプトで、以下を実行します。
wsl
Ubuntuのコマンドプロンプトに入れたと思うので、以下を実行して、Python3が有効か確認します。
python3 --version
Ubuntuのコマンドプロンプトで以下を実行します。
apt -y update && apt -y install python3-pip
以下を実行して、pip3が有効か確認します。
pip --version