Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is python 3.6.1. not available in pyenv?

According to python.org, Python 3.6.1 was released at the end of March. But:

» pyenv install -l | grep 3\.6\.   3.6.0a1   3.6.0a3   3.6-dev 
  1. Why is Python 3.6.1 not yet available in pyenv?
  2. Where can I find documentation about the releases that pyenv supports? (when it was added, what is in progress, ...). The pyenv documentation does not give this information.
  3. Is there a repository for Python releases supported by pyenv? (similar to PyPi)
like image 646
blueFast Avatar asked May 16 '17 06:05

blueFast


People also ask

What version of Python do I have Pyenv?

You can use either pyenv -v or pyenv --version to get the version of pyenv itself. Version comes up as the first command.

How do I upgrade Pyenv?

Usage. To update pyenv and plugins (including pyenv-update itself), just type pyenv update .

Does Pyenv come with pip?

Project description pyenv is a collection of shell scripts and not installable with pip. See installation instructions for more information.


1 Answers

If you installed pyenv via pyenv installer:

pyenv update 

If you installed pyenv via Homebrew

brew upgrade pyenv 

If you installed pyenv via Git:

cd $(pyenv root) && git pull 
like image 81
amigcamel Avatar answered Sep 29 '22 10:09

amigcamel