Files
tldr/pages.ja/common/pyenv.md
K.B.Dharun Krishna 8538a31451 pages/*: add standard translation and links (#11331)
* pages/*: add standard translation and links

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* fix1: false positives; standardize Bengali, Hindi, Nepali periods

* fix: periods in recently added Bengali pages

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* fix: false positives in modified files

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* cleanup: update to native period in Bengali l10n

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-06 14:02:31 +05:30

1.0 KiB

pyenv

複数バージョンのPythonを容易に切り替えします。 詳しくはこちら: https://github.com/pyenv/pyenv

  • 利用可能なコマンド全てをリスト表示する:

pyenv commands

  • ${PYENV_ROOT}/versionsディレクトリ下のPythonバージョン全てをリスト表示する:

pyenv versions

  • アップストリーム(Python公式)からインストール可能なPythonのバージョン全てをリスト表示する:

pyenv install --list

  • ${PYENV_ROOT}/versionsディレクトリ下に指定のPythonバージョンをインストールする:

pyenv install {{2.7.10}}

  • ${PYENV_ROOT}/versionsディレクトリ下の指定のPythonバージョンをアンインストールする:

pyenv uninstall {{2.7.10}}

  • 現在のマシンでグローバルに使用するPythonバージョンをセットする:

pyenv global {{2.7.10}}

  • カレントディレクトリとその下にある全てのディレクトリ内で使用するPythonバージョンをセットする:

pyenv local {{2.7.10}}