由于此类 CocoaPods 错误,我无法运行我的 Xcode 项目:
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.
在我的 Podfile 中:
source 'https://github.com/CocoaPods/specs.git'
workspace 'LongPathToMyProject/..../.../MyProject.xcworkspace'
我尝试过
pod install
很多次,我也尝试过
rm -rf MyProject.xcworkspace
pod install
但这对我没有帮助。
您的文件
.xcodeproj
和您的 podfile
必须位于同一文件夹中。您不必手动创建 .workspace
。然后,在同一文件夹中运行:
pod install
如果不行,再安装pod deintegrate:
gem install cocoapods-deintegrate
并尝试分解现有的 pod:
pod deintegrate
再次运行 pod install 之前