9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

pyenvでインストール可能なバージョン一覧を表示する方法

Posted at

毎回忘れてるのでメモ

一覧表示

pyenv install --list 

最新バージョン表示

pyenv install --list | grep -v - | grep -v b | tail -1

指定バージョンの最新マイナー表示(ex:3.5系)

pyenv install --list | grep -v - | grep -v b | grep 3.5.* | tail -1
9
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?