将 Python 3.x 设置为 macOS 上的默认值
要将 Python 3.x 设置为 macOS 上的默认值,您可以创建一个你的别名
步骤:
alias python='python3'
对于 bash (macOS 10.14 和如下):
[ -e ~/.profile ] && . ~/.profile
对于 zsh(macOS 10.15 及更高版本):
[ -e ~/.profile ] && . ~/.profile
注意:更改系统范围内的默认 Python 可执行文件可能会破坏依赖于 Python 2 的应用程序。为避免这种情况,您可以创建一个
其他提示:
以上是如何使 Python 3 成为 macOS 上的默认 Python 版本?的详细内容。更多信息请关注PHP中文网其他相关文章!