xcrun/lipo freezes with OS X Mavericks and XCode 4.x

前端 未结 5 754
难免孤独
难免孤独 2020-12-04 22:18

Been trying to install psycopg2 with either easy_install or pip, and the terminal gets stuck in a loop between xcrun and lipo.

sidwyn$ sudo easy_install psyc         


        
5条回答
  •  春和景丽
    2020-12-04 22:48

    This one works for me:

    xcode-select -–install
    sudo mv /usr/bin/lipo /usr/bin/lipo.orig
    sudo ln -s /Library/Developer/CommandLineTools/usr/bin/lipo /usr/bin
    

提交回复
热议问题