1. 先查看系统中存在的python版本,mac os默认python版本为2.xx
#python 2.xx
python --version
#python 3.xx
python3 --version
#查看python所在目录
which python
which python3
2. 在目录下~/.bash_profile添加如下一句话,然后crl+x之后输入Y保存
#打开文件,如果没有该文件,则自己创建
touch ~/.bash_profile
nano ~/.bash_profile
#打开文件之后再末尾输入如下语句
alias python=python3
3.然后关闭终端再次打开之后,输入pyhton --version就可以得到更改之后的python版本了
附加:
更改完之后发现pip不能使用了,输入pip3可以。
#报错了
pip3 install selenium
#错误提示:Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/Library/Python/3.7'
Consider using the `--user` option or check the permissions.
#加入--user之后成功安装selenium
pip3 install selenium --user
但是更新pip还是报错。暂不更新。