1
2

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.

Python3をデフォルトにする方法。

Last updated at Posted at 2021-01-31

asdfで言語環境構築やバージョン切り替えを使うのでめっちゃ便利です。
Python2を削除しPython3をインストールする方法はあるけど
Python2使っているプログラムが残っていたらコンフリクトの原因になるので下記のやり方にしましょう。

## とにかくインストールから(インストール済の方は先に進んでください)


asdfをインストールするにはこちらを!
zshを使っているからにはGitからのインストールをお勧めします。
HomebrewからだとZshとの相性の問題でコンフリクト発生することはあるのです。

Pythonとpipをインストールしてください。

asdf plugin-add python
asdf install python 3.8.7
asdf global python 3.8.7
pip install pipenv
asdf reshim python

Python3 デフォルトにする方法。

  1. Open Terminal.
  2. cd.
  3. nano ~/.bashrc. (zshを使用な場合、nano ~/.zshrc)
  4. alias python=python3 (一番上のところにつけてください。)
  5. ^X Exit (で保存しEnterで閉じます)
  6. source ~/.bashrc (zshを使用な場合、source ~/.zshrc)

上手くいったか確認しよう

$ which python 
/usr/local/opt/asdf/shims/python
$ python --version
Python 3.8.7
$ which pipenv
/usr/local/opt/asdf/shims/pipenv
$ pipenv --version
pipenv, version 2020.11.15
1
2
1

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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?