將 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中文網其他相關文章!