Mac配置python环境

03-20 1582阅读

Mac配置环境变量不像winsows,没有窗口界面只能通过命令行指令进行配置,下面是Mac配置python环境变量的步骤

1.打开Mac自带终端Terminal;

2、在终端Terminal输入下面的命令:Python3 --version

Mac配置python环境

输入 python --V没反应。但是输入 python3 --V,显示了Python 3.6.8说明,已经安装了python3。看苹果官方,说是内置的python 升级为了python3,python2不再内置了。

3.编辑bash_profile文件

vim .bash_profile

Mac配置python环境

按E进入编辑

Mac配置python环境

 在安i进入插入模式(就可以编辑文件了)

输入Python安装的路径环境变量命令:

# Setting PATH for Python 3.7
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.7/bin:${PATH}"
export PATH

4、保存退出

先按esc键退出插入模式,再按 : 进入底行模式 再输入 wq 保存退出

5.重新加载配置文件 .bash_profile

输入 source .bash_profile

到此python环境就配好了

VPS购买请点击我

文章版权声明:除非注明,否则均为主机测评原创文章,转载或复制请以超链接形式并注明出处。

目录[+]