Last active
November 2, 2021 05:35
-
-
Save t3yamoto/a65235a98f5ee10b5eda7c16efd8f83a to your computer and use it in GitHub Desktop.
anyenv で pyenv 入れてる場合の `pyenv install --list` で出てくるバージョンの最新化方法
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ anyenv update | |
$ pyenv install --list | |
$ pyenv install 3.9.7 # 入れたいバージョン | |
$ pyenv local 3.9.7 # 使いたいバージョン | |
$ pipenv --python $(cat .python-version) # pipenv で使うバージョン、仮想環境も更新 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment