DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020.

将mac默认的Python2.7改为Python3

鉴于mac默认的python环境为2.7,而pip在安装的时候会提示Python 2.7 reached the end of its life on January 1st, 2020.,因此我们需要更改运行环境。

  1. 输入:
which python

返回python2.7的地址,我们可以用这个地址+’-V’的形式得到具体版本,如我python2.7地址为/usr/bin/python,我输入

/usr/bin/python`-V

返回
Python 2.7.16。

  1. 类似操作,得到Python3的地址
which python3

返回

/usr/bin/python3
  1. 接下来我们写一个配置文件:
vi ~/.bash_profile

i进入插入模式,往里面写入,这个取决于你python3的具体位置。

PATH="/usr/bin:${PATH}"
export PATH
alias python="/usr/bin/python3"

然后按:wq退出。

  1. 之后我们每次希望时候python3环境的时候,就先输入:
source ~/.bash_profile

然后输入python运行的就是python3的环境了。
在这里插入图片描述

换言之,此时我们用pip安装的就是在python3下安装的。
如下是安装opencv的方法

source ~/.bash_profile
pip3 install opencv-contrib-python

猜你喜欢

转载自blog.csdn.net/weixin_44495738/article/details/112585772
1st