The sandbox is not in sync with the Podfile.lock解決辦法

weixin_34321977發表於2017-05-04

今天在github上下載了一份程式碼,但是執行時報錯:

diff: /../Podfile.lock: No such file or directory 
diff: Manifest.lock: No such file or directory 
error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.

解決辦法

  • 關閉當前的專案,開啟終端,進入到程式碼資料夾,刪除掉資料夾中的workspace
rm -rf project.xcworkspace
  • 然後重新pod install,install完成之後,通過workspace開啟專案即可。
pod install
  • 在pod install之前,請確保已經執行pod setup命令。
3008243-ef7f48cd7eac1de0.png
圖片.png

相關文章