mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 05:42:09 +02:00
pyenv: add Japanese translation (#9904)
This commit is contained in:
parent
f5bd4f410c
commit
adbf664932
1 changed files with 32 additions and 0 deletions
32
pages.ja/common/pyenv.md
Normal file
32
pages.ja/common/pyenv.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# 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}}`
|
Loading…
Add table
Reference in a new issue