1. 程式人生 > >Mac下修改預設Python路徑

Mac下修改預設Python路徑

自己記錄一下,從部落格
https://blog.csdn.net/mghhz816210/article/details/73088406
學得

首先開啟配置檔案
open ~/.bash_profile

然後修改你的Python路徑,我自己安裝的Python是3.7
(路徑是: /Library/Frameworks/Python.framework/Versions/ )
(另外,系統自帶的Python路徑是
/System/Library/Frameworks/Python.framework/Versions/ )

在開啟的檔案新增如下兩行命令
export PATH=${PATH}:/Library/Frameworks/Python.framework/Versions/3.7/bin

alias python="/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7"

最後儲存檔案並關閉
在終端中執行
source ~/.bash_profile

然後在終端中輸入Python 檢視是否已經更改為你希望的Python版本