python配置环境变量
Posted tombombadil
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python配置环境变量相关的知识,希望对你有一定的参考价值。
使用homebrew安装
brew install python3
brew linkapps python3
将其设置为默认python,可选
cmd命令打开vi ~/.bash_profile进行修改
# Setting PATH for Python 3.6
# The original version is saved in .bash_profile.pysave
# PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:$PATH"
PATH="/usr/local/bin:$PATH"
export PATH
PATH=”/usr/local/Cellar/python/3.6.4_4/bin:$PATH”
export PATH
alias python="/usr/local/Cellar/python/3.6.4_4/bin/python3.6"
cmd命令:
source ~/.bash_profile
添加zsh配置文件:
HenrydeMacBook% vim ~/.zshrc
HenrydeMacBook% cat ~/.zshrc
source ~/.bash_profile
不设置为默认直接输入 python3也可
以上是关于python配置环境变量的主要内容,如果未能解决你的问题,请参考以下文章