简体   繁体   中英

How to setup python3 version on mac?

I have installed python 3.8.0 via pyenv .

pyenv which python
/Users/myname/.pyenv/versions/3.8.0/bin/python

If I run python3 I get

python3           
Python 3.6.8rc1 (v3.6.8rc1:cc3e73212a, Dec 11 2018, 17:37:34) 
[GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

If I check

which python3
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3

How can I set the 3.8.0 version as default?

By typing pyenv global 3.8

You check get the list of options by typing pyenv -h

If you have multiple versions of python installed, you can do python -3.x -m...

Also check if the env is active before opening it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM