asdf で Python 3.9.1 + pipenv をインストールする
Python のバージョン管理を、pyenv から asdf へお引っ越ししたので、再度 Python と pipenv をインストールしていきます。
パッケージ管理は pipenv が使いやすかったので引き続き使います。
前提
asdf をすでに導入している状態を前提とします。
インストールと確認
Python 3.9.1をインストールし、確認します。
インストール
shell
# プラグインをインストール
asdf plugin-add python
# インストール可能なバージョンの確認
asdf list-all python
# インストール
asdf install python 3.9.1
# 実体の確認
where python
/Users/USERNAME/.asdf/shims/python
asdf which python
/Users/USERNAME/.asdf/installs/python/3.9.1/bin/python
確認 & グローバルに設定
shell
# インストールを確認
asdf list python
# グローバルに設定 & shim 再生成
asdf global python 3.9.1
asdf reshim python
# シェルを再起動 / リロード
# バージョンの確認
python -V
Python 3.9.1
無事インストールできました🐈
pipenv
続けてpipenv
をインストールする場合は以下です。
インストール
shell
# pip アップデート
pip install --upgrade pip
# pipenv インストール & shim 再生成
pip install pipenv
asdf reshim python
確認
shell
# バージョンの確認
pipenv --version
pipenv, version 2020.11.15
# 実体の確認
where pipenv
/Users/cray/.asdf/shims/pipenv
asdf which pipenv
/Users/USERNAME/.asdf/installs/python/3.9.1/bin/pipenv
無事インストールできました
Author And Source
この問題について(asdf で Python 3.9.1 + pipenv をインストールする), 我々は、より多くの情報をここで見つけました https://qiita.com/craymaru/items/0d22c1c542cf4a8326ee著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .