首頁 >後端開發 >Python教學 >如何讓 Python 3 成為 macOS 上的預設 Python 版本?

如何讓 Python 3 成為 macOS 上的預設 Python 版本?

DDD
DDD原創
2024-11-23 08:33:21365瀏覽

How Can I Make Python 3 the Default Python Version on macOS?

將 Python 3.x 設定為 macOS 上的預設值

要將 Python 3.x 設為 macOS上的預設值,您可以建立一個你的別名

步驟:

  1. 開啟指令 shell(終端、iTerm2 等)。
  2. 將以下行加入您的.profile 文件,位於您的主目錄中(~/.profile):
alias python='python3'
  1. 在shell 中取得. profile 檔案:
  • 對於bash (macOS 10.14 及如下):

    [ -e ~/.profile ] && . ~/.profile
  • 對於zsh(macOS 10.15 及更高版本):

    [ -e ~/.profile ] && . ~/.profile

更改系統範圍內的預設Python 執行檔可能會破壞依賴於Python 2 的應用程式。為避免這種情況,您可以建立一個

  • 其他提示:
要呼叫原始 Python 2 解釋器,請使用 python2 指令。 對於腳本,使用 #!/usr/bin/env python3 作為 shebang 行來明確使用 Python 3 而不是預設系統口譯員。

以上是如何讓 Python 3 成為 macOS 上的預設 Python 版本?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn