如何讓 Python 3.x 成為 macOS 上的預設 Python 解釋器?

DDD
發布: 2024-11-21 07:35:13
原創
624 人瀏覽過

How Do I Make Python 3.x the Default Python Interpreter on macOS?

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

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板