MSYS2でPython3を使う
What
MSYS2でPython3を使いたい。
Environment
Windows 10 Home
How
$ pacman -S python
で最新のPythonが入る。 $ pacman -S python3-pip
でPython3のpipが入る。
例えばPython 3.6.2を入れたとして、実行するにはpython
、python3
かpython3.6
。
Appendix
バージョン合わせ
export PATH="/mingw64/bin:${PATH}"
上のように.bash_profile
をいじってMinGWのbinをPATHに入れて動かしていると、pythonのバージョンが合わないときがある。
pythonで最新のPythonを動かしたいときは、
export PATH="${PATH}:/mingw64/bin"
とすれば動く。