如何在 macOS 上使用 Python 3.x 作为默认 Python 解释器
运行 Mountain Lion 时,Python 2.7 设置为默认值Python版本。但是,您可以按照以下步骤将其更改为 Python 3.3:
将 Python 3.3 设置为默认别名
为了避免破坏依赖于 Python 2 的应用程序,建议在 shell 中创建默认为 Python 3.3 的别名。在 ~/.profile 文件中,添加以下行:
alias python='python3'
然后,使用以下命令在 ~/.bash_profile 和 ~/.zsh_profile 中获取 ~/.profile:
[ -e ~/.profile ] && . ~/.profile
这将在所有 shell 中将 python 别名设置为 python3。
其他别名
为了方便起见,您可以创建其他别名以轻松在 Python 版本之间切换:
alias 2='python2' alias 3='python3'
Shebang for Scripts
当创建 Python 脚本,而不是在 shebang 行中使用:
#!/usr/bin/env python
,使用:
#!/usr/bin/env python3
这将确保使用 Python 3.3 来执行这些脚本。
以上是如何使 Python 3.x 成为 macOS 上的默认 Python 解释器?的详细内容。更多信息请关注PHP中文网其他相关文章!