macOS 配置Python指令:

直接在终端中输入python3,能够正常执行。如果想要使用python命令,而非python3命令运行python程序,需要执行以下命令。

echo 'alias python="python3"' >> .bash_profile

执行python指令,报错:

zsh: command not found: python

MacOS默认的SHELL连接软件是zsh,需要执行chsh命令,把zsh更改为bash。具体操作如下:

a. 查看mac默认的SHELL连接文件:

echo $SHELL

b. 查看mac自带的SHELL连接文件,如图所示,有7个:

more /etc/shells

c. 使用chsh命令更改系统的SHELL连接文件为bash:

chsh -s /bin/bash

d. 执行下面的命令,设置别名python=python3:

echo 'alias python="python3"' >> .bash_profile

e. 运行python,显示如下图所示的界面,问题解决:

python