1
0

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.

Mac,Windows に Python3 をインストールし環境構築する方法

Last updated at Posted at 2020-02-03

for Mac[1]

Mac にはデフォルトで Python2系 がインストールされていますが、ここではbrewによる3系のインストール方法.
まずpython3系が入っていないかを確認.

$python3 -V

何も出力がなければ,以下に従ってインストール.

Python3 の導入手順

Python3 を homebrew でインストールします。

1.homebrew のインストール

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

2.Python3 のインストール

brew install python3

3.Python3 の確認

python3 -V

を実行してPython 3.7.3等が表示されればインストールの完了です。


for Windows[2]

ここがわかりやすい.

参考文献

[1]https://qiita.com/7110/items/1aa5968022373e99ae28
[2]https://www.python.jp/install/windows/install_py3.html

1
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?