我试图在我的mac上安装mod_wsgi。 所以我安装了Xcode命令行工具。
df = pd.concat([df1, df2], axis=1)
df1:
Column 1
1 0001
2 0001
3 0002
4 0002
5 0003
6 0003
7 0003
df2:
Column 2
3 0001
4 0001
5 0002
output:
Column 1 Column 2
1 0001 NaN
2 0001 NaN
3 0002 0001
4 0002 0001
5 0003 0002
6 0003 NaN
7 0003 NaN
和
xcode-select --install
它表示跟随错误。
sudo pip3 install mod_wsgi
我已经在StackOverflow上问了它,我得到了答案我必须安装Xcode命令行工具。所以我认为Xcode命令行工具出了问题。当我点击Xcode图标时,它显示error:command '/usr/bin/clang' failed with exit status 1
我该怎么办?我试图重新安装Xcode但得到了同样的错误。
答案 0 :(得分:0)
我已经解决了这个问题。
Graham Dumpleton通过另一个问题帮我解决了这个问题。
安装Xcode command line tool
后,我分别安装了Xcode application
。这解决了问题。