LoginSignup
1
1

More than 5 years have passed since last update.

Pythonセットアップメモ 2018-05-21

Posted at

Pythonセットアップした時のメモ

結論

asdfを利用しているのを想定

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

確認

$ which python 
/usr/local/opt/asdf/shims/python
$ python --version
Python 3.6.5
$ which pipenv
/usr/local/opt/asdf/shims/pipenv
$ pipenv --version
pipenv, version 2018.05.18

経緯

twitterでいまどきのPythonインストール方法を教えてもらった

メモ

  • asdf-python も python-build なので、pyenvと大差なさそう。
  • virtualenv よくしらないが chroot みたいなものかなとおもったけど、そうらしい
  • pipenv はvirtualenvを内包しているようだ
1
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
1
1