You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many times I want to install Python 2.7.* or 3.8.*. It would be great to have some basic semver stuff, or even specifying a regex or something, so you could do something like:
$ pyenv install --list | grep "^\s*2.7.*"
and take the last matching line. So specifying:
"version"=>"2.7.*"
would get checked against the output of pyenv install --list and the last matching value would be the version that is installed.
If I wanted to use semver syntax, Gem::Version might be useful, to find the latest version
Many times I want to install Python
2.7.*
or3.8.*
. It would be great to have some basic semver stuff, or even specifying a regex or something, so you could do something like:and take the last matching line. So specifying:
would get checked against the output of
pyenv install --list
and the last matching value would be the version that is installed.If I wanted to use semver syntax, Gem::Version might be useful, to find the latest version
The text was updated successfully, but these errors were encountered: