| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

差分

ナビゲーションに移動 検索に移動
771 バイト追加 、 2024年9月17日 (火) 08:14
*[[Django インストール]]
=====Macにインストール=====
----
*Homebrewのインストール
https://brew.sh/
<pre>
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
</pre>
*pyenv のインストール
<pre>
brew install pyenv
</pre>
*~/.bash_profileに追記
<pre>
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
</pre>
 
*pythonバージョン確認
<pre>
$ pyenv install --list | egrep '[ ]+3.*'
</pre>
*pythonインストール
<pre>
$ pyenv install 3.12.6
</pre>
*以下のエラーの場合
<pre>
The Python lzma extension was not compiled. Missing the lzma lib?
</pre>
xzライブラリのインストール
<pre>
brew install xz
</pre>
再インストール
<pre>
$ pyenv uninstall 3.12.6
pyenv: remove /Users/piroto/.pyenv/versions/3.12.6? [y|N] y
pyenv: 3.12.6 uninstalled
$ pyenv install 3.12.6
</pre>
*使用バージョンの設定
<pre>
pyenv versions
$ pyenv global 3.12.6
</pre>

案内メニュー