1
4

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 3 years have passed since last update.

WSL に python インストール をする

Posted at

How to install python3 in WSL

apt

sudo apt update
sudo apt upgrade

install python

sudo apt-get install python3 python3-pip -y
sudo pip3 install pip -U

install modules

sudo pip install --upgtade pip

sudo pip3 install matplotlib
sudo pip3 install numpy
sudo pip3 install scipy
sudo pip3 install pandas

Open CV intall

sudo pip install opencv-python
sudo pip install opencv-contrib-python
1
4
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
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?