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

Mojave pythonでhello world

Last updated at Posted at 2019-09-25

#brewでpython3をインストール

  1. macでpythonをインストールするため以下のコマンドを入力した。
$ brew install python3

次のエラーが出た。

Error: Xcode alone is not sufficient on Mojave.
Install the Command Line Tools:
  xcode-select --install

どうやらXcodeのバージョンがMojavaに対応できてないらしい

2. Xcodeをアップデートする
App Store -> アップデート -> Xcode
このアップデートはなかなか時間がかかる。

3. エラーに出てきたコマンドを入力してみる。

$ xcode-select --install
xcode-select: note: install requested for command line developer tools

developer toolsが必要らしい。
インストールしてみる。
->インストールしますか?と聞かれるのでそのまま素直にインストール。

4. brewをアップデートする

$ brew update
Updated 1 tap (homebrew/core).
==> Updated Formulae

無事にbrewをアップデートできた

5. もう一回pythonをインストールするコマンドを入力。

Error: Permission denied @ dir_s_mkdir - /usr/local/Frameworks

またエラーが出た

/usr/local/Frameworkがないらしいのでディレクトリを作る。

$ sudo mkdir /usr/local/Frameworks

ディレクトリを作ったら次のコマンド

$ brew link pythonError: Could not symlink bin/2to3
Target /usr/local/bin/2to3
already exists. You may want to remove it:

またエラー
なんか上書きしないといけないっぽい

brew link --overwrite python
Linking /usr/local/Cellar/python/3.7.4_1... 20 symlinks created

バージョンを確認

$ python3 --version
Python 3.7.3

これでようやくうまくいった。

#hello worldしてみる

  1. hello.pyというファイルを作成
hello.py
print ("hello world")

実行する。

$ python3 hello.py
hello world

成功しました。

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