2
1

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.

python3をbrewでinstallしたときのErrorを解決

Last updated at Posted at 2016-03-01

言わずと知れたパッケージ管理システムHomebrewでpython3をinstallしてみた。

install完了したと思って

which python3

python3がないと言われた。
Homebrewの処理を確認したら、brew link stepで問題発生とのこと。

pyhon3はシンボリックリンクが自動的に作成されないパッケージだと言うことか。

素直に

brew link python3 --force

これで/usr/local/bin/配下にpython3シンボリックリンクが作成される。ちなみにhomebrewがinstallしたパッケージは、/usr/local/Cellar/に置かれるので、そこを参照している。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?