python3 command not found after installing python with pyenv

13,005

Solution 1

If you installed both python 2.x and python 3.x using pyenv, run the following to enable both versions to be found globally (python, python2 and python3 aliases).

Add the specific versions you are using:

pyenv global 3.8.3 2.7.18

Solution 2

pyenv is just a Python version manager. It may be able to see a Python 3.X installed even if python3 isn't installed in your $PATH.

You need to add python3 to your $PATH. You can see how to do that here.

By default, MacOS uses python3 to differentiate between the native pre-installed python (which is Python 2.7) and any post-installed Python 3.X distributions. The same goes for pip and pip3.

From the pyenv documentation on managing versions:

Locating the Python Installation

Once pyenv has determined which version of Python your application has specified, it passes the command along to the corresponding Python installation.

Each Python version is installed into its own directory under $(pyenv root)/versions.

For example, you might have these versions installed:

$(pyenv root)/versions/2.7.8/

$(pyenv root)/versions/3.4.2/

$(pyenvroot)/versions/pypy-2.4.0/

As far as pyenv is concerned, version names are simply the directories in $(pyenv root)/versions.

Solution 3

pyenv manages shim executables for commands like python3 and pip3. If pyenv's shims aren't available in your shell, it usually means one of two things:

  • pyenv isn't fully installed

or

  • pyenv shell features aren't active

As your pyenv command is working but the shims aren't, it most likely means the shell features aren't activated. As of writing, the correct way is to ensure the init command output is evaluated. On macOS, you can add the following to your ~/.bash_profile:

eval "$(pyenv init -)"

Older installation instructions might not include that step or just have you add pyenv's bin directory to the PATH, which is not enough. If you used pyenv-installer, this step is hinted at in a warning at the end of the installation process.

Solution 4

I had the python3 in path. I also executed pyenv global 2.x.x 3.x.x. But I still got the same error.

What eventually worked for me is executing this line in the project root (with whichever version replacing 3.X.X)

pyenv shell 3.X.X

Note: This sets the shell specific python version so it's not really a solution to the problem posted. Just a workaround to get python3 working.

Share:
13,005
lch
Author by

lch

Updated on July 25, 2022

Comments

  • lch
    lch almost 2 years

    I installed a specific version of python with pyenv. When typed pyenv version in terminal, i see 3.5.0 (set by /Users/lcherukuri/.python-version). But when I typed python3, I got python3 command not found. How to fix this? pip3 is Also not found

  • Noumenon
    Noumenon about 3 years
    This answer deserves an award for the amount of concepts, logic, and context included. It saved me so much struggle. Thank you.