我在我的项目中安装了alamofire。现在我想删除它。所以我从Podfile中删除了现在为空的lib。 然后我发起了
pod install
现在我的项目中有3个错误:
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.
我该怎么办?
答案 0 :(得分:1)
此时,你应该完全从你的项目中删除CocoaPods,然后重新开始。如果您按照这些步骤操作,您肯定会立即恢复运行。
pod deintegrate
sudo gem install cocoapods-deintegrate
deintegrate
pod init
(如果您删除了Podfile
)Podfile
减去您要删除的图书馆(如果您删除了Podfile
)pod install
此时您的项目应该备份并运行。