- Notifications
You must be signed in to change notification settings - Fork3.1k
pyenv is a tool for simple Python version management.
To install pyenv, please refer to theReadme.
pyenv will try its best to download and compile the wanted Python version,but sometimes compilation fails because of unmet system dependencies, orcompilation succeeds but the new Python version exhibits weird failures atruntime. The following instructions are our recommendations for a sane buildenvironment.
Mac OS X:
If you haven't done so, install Xcode Command Line Tools(
xcode-select --install
) andHomebrew. Then:brew install openssl readline sqlite3 xz zlib tcl-tk@8 libb2
For older operating systems
Homebrew
might not be available so installpyenv
with:curl https://pyenv.run| bash
xcode-select --install
might not be available on older macOS's so usethis script instead orthis page as well as directly from Apple downloads:https://developer.apple.com/download/more/
And search for:
command line tools <version number>
like
command line tools 10.9
For dependencies useMacPorts:
sudo port install pkgconfig openssl zlib xz gdbm tcl tk +quartz sqlite3 sqlite3-tcl
Ubuntu/Debian/Mint:
sudo apt update; sudo apt install build-essential libssl-dev zlib1g-dev \libbz2-dev libreadline-dev libsqlite3-dev curl git \libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev
The Python's documentation reports a different set of dependencies in thedocumentation and in the script used in theGitHub Actions
If you are going build PyPy from source or install other Python flavors that require CLang, also install
llvm
.CentOS/Fedora 21 and below:
yum install gcc make patch zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel openssl-devel tk-devel libffi-devel xz-devel
Amazon Linux 2:
yum install gcc make patch zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel openssl11-devel tk-devel libffi-devel xz-devel
Fedora 22 and above:
dnf install make gcc patch zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel openssl-devel tk-devel libffi-devel xz-devel libuuid-devel gdbm-libs libnsl2
Fedora Silverblue
toolbox entersudo dnf update vte-profile# https://github.com/containers/toolbox/issues/390sudo dnf install"@Development Tools" zlib-devel bzip2 bzip2-devel readline-devel sqlite \sqlite-devel openssl-devel xz xz-devel libffi-devel findutils tk-devel
openSUSE:
zypper install gcc automake bzip2 libbz2-devel xz xz-devel openssl-devel ncurses-devel \readline-devel zlib-devel tk-devel libffi-devel sqlite3-devel gdbm-devel make findutils patch
Arch Linux:
pacman -S --needed base-devel openssl zlib xz tk
Solus:
sudo eopkg it -c system.develsudo eopkg install git gcc make zlib-devel bzip2-devel readline-devel sqlite3-devel openssl-devel tk-devel
Alpine Linux:
apk add --no-cache git bash build-base libffi-dev openssl-dev bzip2-dev zlib-dev xz-dev readline-dev sqlite-dev tk-dev
Installation of Python 3.7 may fail due to Python 3.7.0 issue#34555. A workaround is to install thelinux system headers package:
apk add linux-headers
Void Linux:
xbps-install base-devel libffi-devel bzip2-devel openssl openssl-devel readline readline-devel sqlite-devel xz liblzma-devel zlib zlib-devel
See alsoCommon build problems for further information.
SeeWhy pyenv?
If you experience failure while executing a script that issuespython
command or executes another python script:
- try executing the command again in the appropriate
pyenv shell
- check if the command is a python script or invokes a python script and fix the shebang to
#!/usr/bin/env python
Such failures usually show up as:
- incompatible python version, but you are certain that you have correct version installed
- module not found but you are certain that the module is installed
- the issue can be traced back to something related to
PYTHONPATH
The string read from a.python-version
file must match the name of an existingdirectory in~/.pyenv/versions/
. You can see the list of installed Pythonversions withpyenv versions
.
If you're usingpython-build, typically this will be one of the versions listed by thepyenv versions
command.
Other version managers might allow fuzzy version matching on the string readfrom.python-version
file, e.g. they might allow "3.3" (without patch suffix)to match the latest Python 3.3 release.pyenv will not support this, becausesuch behavior is unpredictable and therefore harmful.
Check that
pyenv
is in your PATH:which pyenv
Check that pyenv's shims directory is in your PATH:
echo$PATH| grep --color=auto"$(pyenv root)/shims"
If not, seeConfigure your shell's environment for pyenv in the installation instructions.
Please searchexisting issues and open a new one if you can't find any answers. Here's a script that dumps information about your current environment; you can use Gist to paste it online and share the URL to it in your bug report:
git clone https://github.com/pyenv/pyenv-doctor.git"$(pyenv root)/plugins/pyenv-doctor"pyenv doctor
Typically it's one of the following:
- bash:
~/.bash_profile
- zsh:
~/.zshrc
- ksh:
~/.kshrc
- other:
~/.profile
With bash on Ubuntu, you probably already have a~/.profile
. In that case youshould add pyenv config there instead of creating a~/.bash_profile
. However,since this file is read only once per desktop login, you may achieve quickerresults by adding pyenv to~/.bashrc
instead.
SeeUnix shell initialization for more info about how config files getloaded.
ThePYENV_DEBUG
is the environment variable to debug logging in pyenv. You can try to enable debug logging by setting something in the environment variable likePYENV_DEBUG=1 pyenv versions
.
Some of 3rd party tool likePyInstaller might require CPython installation built with--enable-framework
. You can build CPython with shared library as follows.
$ env PYTHON_CONFIGURE_OPTS="--enable-framework" pyenv install 3.5.0
Note: You'd better notexport
PYTHON_CONFIGURE_OPTS
cause it breaks building of some distros likeminiconda
andanaconda
.
Some of 3rd party tool likePyInstaller might require CPython installation built with--enable-shared
. You can build CPython with shared library as follows.
$ env PYTHON_CONFIGURE_OPTS="--enable-shared" pyenv install 3.5.0
Since pyenv (precisely, python-build) will build CPython with configuring RPATH, you don't have to setLD_LIBRARY_PATH
to specify library path on GNU/Linux.
Building CPython with--enable-optimizations
will result in a faster interpreter at the cost of significantly longer build times.Most notably, this enables PGO (profile guided optimization). While your mileage may vary, it is common for performance improvement from this to be in the ballpark of 30%.
env PYTHON_CONFIGURE_OPTS='--enable-optimizations --with-lto' PYTHON_CFLAGS='-march=native -mtune=native' pyenv install 3.6.0
You can also customize the task used for profile guided optimization by setting thePROFILE_TASK
environment variable, for instance,PROFILE_TASK='-m test.regrtest --pgo -j0'
will run much faster than the default task.