Why python 3.6.1. not available in pienw?

As reported by python.org , it 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 Python 3.6.1

    isn't it available yet pyenv

    ?
  2. Where can I find documentation about the releases that it supports pyenv

    ? (when it was added that's in progress ...). The pyenv documentation does not provide this information.
  3. Is there a repository for the Python supported releases pyenv

    ? (analog PyPi

    )
+5


source to share


2 answers


If you installed pyenv via the pyenv installer :

pyenv update

      

If you installed pyenv via Homebrew



brew upgrade pyenv

      

If you installed pyenv via Git:

cd $(pyenv root) && git pull

      

+9


source


I tried pyenv update

it but it didn't work for me to solve.



I had to brew update && brew upgrade pyenv

before doingpyenv install 3.6.1

+8


source







All Articles