如何在macOS 上使用Python 3.x 作為預設Python 解釋器
執行Pytain Lion 時,Python 2.7 設定為預設值Pyt版本。但是,您可以按照以下步驟將其更改為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中文網其他相關文章!