facebook twitter hatena line email

「Mac/インストール/pyenv」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==pyenvインストール== brew install pyenv ==pythonバージョン一覧== pyenv install --list pyenv install --list | egrep '^[ ]+[3]\.(9|10|11)\..+$' 参考...」)
 
(path登録)
 
(同じ利用者による、間の4版が非表示)
行11: 行11:
 
  pyenv install 3.11.7
 
  pyenv install 3.11.7
  
==pythonをglobalに反映==
+
==pythonのバージョンをglobalに反映==
 
<pre>
 
<pre>
$ pyenv global 3.11.7
+
$ pyenv global 3.11.7
 
   system
 
   system
 
* 3.11.7
 
* 3.11.7
 +
</pre>
 +
 +
==pythonのバージョンをlocalに反映==
 +
<pre>
 +
pyenv local 3.11.7
 +
</pre>
 +
 +
==path登録==
 +
<pre>
 +
export PATH="${HOME}/.pyenv/shims:${PATH}"
 
$ python -V
 
$ python -V
 
Python 3.11.7
 
Python 3.11.7
 
</pre>
 
</pre>

2023年12月22日 (金) 12:31時点における最新版

pyenvインストール

brew install pyenv

pythonバージョン一覧

pyenv install --list
pyenv install --list  | egrep '^[ ]+[3]\.(9|10|11)\..+$'

参考:https://qiita.com/crankcube/items/15f06b32ec56736fc43a

指定pythonインストール

pyenv install 3.11.7

pythonのバージョンをglobalに反映

$ pyenv global 3.11.7
  system
* 3.11.7

pythonのバージョンをlocalに反映

pyenv local 3.11.7

path登録

export PATH="${HOME}/.pyenv/shims:${PATH}"
$ python -V
Python 3.11.7