Pythonバージョン管理のpyenvの使い方
提供: Python入門
2018年3月21日 (水) 12:01時点におけるDaemon (トーク | 投稿記録)による版 (ページの作成:「x とは、 '''読み方''' ;x: __TOC__ == 概要 == == インストール == <syntaxhighlight lang="bash"> git clone https://github.com/yyuu/pyenv.git ~/.pyen...」)
スポンサーリンク
x とは、
読み方
概要
インストール
git clone https://github.com/yyuu/pyenv.git ~/.pyenv
zshrc 等のシェルの設定を行います。
export PYENV_ROOT=$HOME/.pyenv export PATH=$PYENV_ROOT/bin:$PATH eval "$(pyenv init -)"
設定をシェルに読み込ませます(例はzsh)。
source ~/.zshrc
インストール pyenv-installerを使う場合
curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash
実行例
Usage: pyenv <command> [<args>] Some useful pyenv commands are: commands List all available pyenv commands local Set or show the local application-specific Python version global Set or show the global Python version shell Set or show the shell-specific Python version install Install a Python version using python-build uninstall Uninstall a specific Python version rehash Rehash pyenv shims (run this after installing executables) version Show the current Python version and its origin versions List all Python versions available to pyenv which Display the full path to an executable whence List all Python versions that contain the given executable See `pyenv help <command>' for information on a specific command. For full documentation, see: https://github.com/pyenv/pyenv#readme
$ pyenv versions * system (set by /home/kaworu/.pyenv/version) 2.6.9 2.7.14 3.3.7 3.4.8 3.5.5
関連項目
ツイート
スポンサーリンク