7
15

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.

pyenvチートシート

Last updated at Posted at 2017-05-13

概要

  • pyenv = pythonのバージョンマネージャ。rbenvと操作性が似ている

導入

OSXの場合はbrewでインストール可能

$ brew install pyenv

インストール後はパスを通す

~/.bash_profile
export PATH=$HOME/.pyenv/shims:$PATH

利用

コマンドの書式もrbenvに準ずる。

バージョンの管理

# インストールできる一覧の表示
$ pyenv install --list

# インストール
$ pyenv install 3.3.6

# アンインストール
$ pyenv uninstall 3.3.6

インストールされたpythonは~/.pyenv に格納される。

確認

# インストール済の一覧表示
$ pyenv versions

# カレントディレクトリ内で有効なバージョンの表示
$ pyenv version

バージョン指定

デフォルトのバージョン指定とは別に、ディレクトリ別にバージョンを指定できる。
当該のディレクトリ内には.python-version が作成され、指定したバージョンが記録される。

# デフォルトのバージョンを指定
$ pyenv global 3.3.6

# カレントディレクトリのバージョンを指定
$ pyenv local 2.7

# カレントディレクトリのバージョン指定を除去
$ pyenv local --unset

参考

7
15
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
7
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?