将 Python 3.x 设置为 macOS X 上的默认版本
许多软件应用程序都依赖于 Python 2.7,这通常是默认版本在 macOS X 上。但是,您可能更喜欢使用 Python 3.x 来实现现代功能和安全更新。以下是在系统范围内修改默认 Python 版本的方法:
考虑潜在影响
更改默认 Python 可执行文件可能会破坏依赖于 Python 2 的应用程序。要避免这种情况,使用以下方法:
创建一个Alias
Bash 或 zsh shell(macOS 中默认)支持别名命令。将以下行添加到您的 ~/.profile 文件中:
alias python='python3'
获取别名
要在 shell 中激活别名,请从以下位置获取 ~/.profile你的 ~/.bash_profile 或~/.zsh_profile:
[ -e ~/.profile ] && . ~/.profile
使用别名
获取别名后,$python 命令现在将执行 Python 3.3。要调用 Python 2,请使用 $python2 命令。
用于解释器使用的其他别名
如果需要,请创建其他别名以快速访问解释器:
alias 2='python2' alias 3='python3'
Python 的 Shebang可执行文件
在脚本中,考虑对 Python 3 可执行文件使用显式 shebang:
#!/usr/bin/env python3
而不是:
#!/usr/bin/env python
这可确保系统使用 Python 3执行 Python 可执行文件时。
以上是如何将 Python 3.x 设置为 macOS 上的默认版本?的详细内容。更多信息请关注PHP中文网其他相关文章!