简体   繁体   中英

Homebrew not installing the correct version of Python

I was trying to install Python 3.7 using homebrew with "brew install python". When I check the version of python installed, I get python 2.7.10. Anyone know how to fix this?

Most likely you need to call python 3.7 commands with

python3

and install packages with

pip3 

as well, also check your $PATH configuration, as is it usually takes the OSx python as default in Macs

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