為macOS 12.3以上版本安裝python2
2023-02-05 18:07 作者:CI知名氣人鴿手_HiEo | 我要投稿
要在macOS 12.3以上安裝python2,你需要:
良好的網絡
極佳的耐心
富余的硬盤空間
手

首先,你需要安裝Xcode
直接前往appstore搜索安裝即可
然后安裝homebrew
此處給出tuna鏡像站的鏈接
https://mirrors.tuna.tsinghua.edu.cn/help/homebrew/
打開終端,跟隨頁面上的教程執(zhí)行即可。
太長不看版:
xcode-select --install
export HOMEBREW_BREW_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git"
export HOMEBREW_CORE_GIT_REMOTE="https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git"
export HOMEBREW_BOTTLE_DOMAIN="https://mirrors.tuna.tsinghua.edu.cn/homebrew-bottles"
git clone --depth=1 https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/install.git brew-install
/bin/bash brew-install/install.sh
rm -rf brew-install
上述命令需一條條執(zhí)行,等當前命令執(zhí)行完畢后方可繼續(xù)
到這里,homebrew就算安裝完了。如若需要,可以跟隨tuna鏡像站的教程繼續(xù)替換鏡像源,會對下載速度有較大提升
之后,參照軼哥的教程執(zhí)行即可
鏈接:https://www.wyr.me/post/658
太長不看版:
brew install pyenv
pyenv install 2.7.18
export PATH="$(pyenv root)/shims:${PATH}"
pyenv global 2.7.18
echo 'PATH=$(pyenv root)/shims:$PATH' >> ~/.zshrc
上述命令執(zhí)行完畢后,前往終端輸入:
python --version
并執(zhí)行
若輸出2.7.18,那么恭喜你,安裝成功
疑難雜癥
1??重啟后若失效,再次依次執(zhí)行下列代碼即可
export PATH="$(pyenv root)/shims:${PATH}"
pyenv global 2.7.18
echo 'PATH=$(pyenv root)/shims:$PATH' >> ~/.zshrc
2??待補充...
參考鏈接
https://www.wyr.me/post/658
https://mirrors.tuna.tsinghua.edu.cn/help/homebrew/
標簽: