Python3 修改默认环境的方法
Mac环境中既有自带的Python2.7也有自己安装的Python3.5.1,默认想用Python3的环境
1.添加Python3的环境变量
vi~/.bash_profile #SettingPATHforPython3.5 #Theoriginalversionissavedin.bash_profile.pysave PATH="/Library/Frameworks/Python.framework/Versions/3.5/bin:${PATH}" exportPATH
2.添加别名
vi~/.bashrc aliaspython="/Library/Frameworks/Python.framework/Versions/3.5/bin/python3.5"
3.立即生效
source.bash_profile
以上这篇Python3修改默认环境的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。