把系統(tǒng)的python(路徑/System/Library/Frameworks/Python.framework/Versions
)從2.7升級到了3.6,然后Xcode就GG了尘喝。
打包的時候報錯
{
description = "Failed to verify bitcode in Frameworks/libswiftAssetsLibrary.dylib:\nTraceback (most recent call last):\n File \"/Applications/Xcode.app/Contents/Developer/usr/bin/bitcode-build-tool\", line 7, in <module>\n from bitcode_build_tool import bitcode_build_tool_main, BitcodeBuildFailure\n File \"/Applications/Xcode.app/Contents/Developer/usr/bin/../lib/bitcode_build_tool/__init__.py\", line 1, in <module>\n from buildenv import BuildEnvironment, BitcodeBuildFailure\nModuleNotFoundError: No module named 'buildenv'\n";
info = {
};
level = ERROR;
type = "malformed-payload";
}
看到里面的__init__.py
文件出錯衙熔,想到剛升級了python拓售,就知道估計這里出了問題了思灌。原因可能是后來定位問題時看到的一句話:
MAC OS X EI Capitan 系統(tǒng)的 python 從 2.7 升級到 3 ,如果是 IOS 開發(fā)者請不要直接把 2.7 干掉链峭,因為 xcode 只支持 2.7 的 python
于是開始修復(fù)python到python2.7.
開始修復(fù)
- 用brew下載安裝2.7(如果你不像我把python2.7的文件夾都給刪了,那么可以跳過)
brew update && brew reinstall python
brew unlink python && brew link python
如果這個時候/System/Library/Frameworks/Python.framework/Versions/
里面沒有2.7
的文件夾谐算,復(fù)制/usr/local/Cellar/python/2.7.X
進去熟尉。
注意:這里要打開SIP才可以操作,不過如果你已經(jīng)搞壞了python2.7 =洲脂。=斤儿,估計SIP也是開的。
- 重新建立軟鏈接恐锦。
下面是當(dāng)時升級到3.6的操作往果,嘗試把3.6改回2.7,結(jié)果可行一铅。
sudo chown -R root:wheel /System/Library/Frameworks/Python.framework/Versions/2.7
sudo rm /System/Library/Frameworks/Python.framework/Versions/Current
sudo ln -s /System/Library/Frameworks/Python.framework/Versions/2.7 /System/Library/Frameworks/Python.framework/Versions/Current
sudo rm /usr/bin/pydoc
sudo rm /usr/bin/pythonbrew unlink python && brew link python
sudo rm /usr/bin/pythonw
sudo rm /usr/bin/python-config
sudo ln -s /System/Library/Frameworks/Python.framework/Versions/2.7/bin/pydoc2.7 /usr/bin/pydoc
sudo ln -s /System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7 /usr/bin/python
sudo ln -s /System/Library/Frameworks/Python.framework/Versions/2.7/bin/pythonw2.7 /usr/bin/pythonw
sudo ln -s /System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7m-config /usr/bin/python-config
- 重裝一下xcode 的 command-tool
sudo xcode-select --install
好了陕贮,到這里應(yīng)該就能搞定了。
熟悉的python又回來了潘飘。
補充:.bash_profile
文件
如果終端用的bash飘蚯,把我的.bash_profile
文件內(nèi)容是這些,亂糟糟的一堆福也。這東西不熟,貼出來做個參考
source ~/.profile
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
if which swiftenv > /dev/null; then eval "$(swiftenv init -)"; fi
PATH="/System/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
export PATH
如果要默認(rèn)用python3攀圈,那么以后用python3和pip3就好暴凑,別把系統(tǒng)的干掉了。
當(dāng)然赘来,也可以用alias寫入.bash_profile
alias python="/System/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6"