Mac自带2.7,下载并安装3.8后,在命令行通过"python",默认只能打开python 2,想打开python 3的话,要用命令"python3"。 解决方法需要2大步: 1.改.bash_profile文件 *** 1. 终端打开.bash_profile文件 *** open ~/.bash_profile *** 2. .bash_profile文件内容 *** # Setting PATH for Python 3.5 # The original version is saved in .bash_profile.pysave PATH="/Library/Frameworks/Python.framework/Versions/3.5/bin:${PATH}" export PATH *** 3. 文件中添加别名 *** alias python="/Library/Frameworks/Python.framework/Versions/3.5/bin/python3.5" *** 4. 终端中重新读取.bash_profile文件 *** source .bash_profile 2.改.zshrc文件 在相应目录下 执行 touch .zshrc 创建文件,添加 source ~/.bash_profile 这样,直接用"python"命令,就可以打开python 3.8了。