將Python 3.x 設定為macOS X 上的預設版本
許多軟體應用程式都依賴Python 2.7,通常是依賴Python預設版本在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中文網其他相關文章!