删除以前添加的库时出现问题
Issue when removing a previously added library
我在我的项目中安装了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.
我该怎么办?
此时,您应该从项目中完全删除 CocoaPods,然后重新开始。如果您按照这些步骤操作,您肯定会立即恢复正常 运行。
- 运行
pod deintegrate
- 要安装,运行
sudo gem install cocoapods-deintegrate
- 有关
deintegrate
的更多信息,请参见 [this] (https://github.com/kylef/cocoapods-deintegrate)
- 运行
pod init
(如果您删除了 Podfile
)
- 将您的所有信息添加回
Podfile
减去您要删除的库(如果您删除了 Podfile
)
- 运行
pod install
此时您的项目应该已备份并且 运行ning。
我在我的项目中安装了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.
我该怎么办?
此时,您应该从项目中完全删除 CocoaPods,然后重新开始。如果您按照这些步骤操作,您肯定会立即恢复正常 运行。
- 运行
pod deintegrate
- 要安装,运行
sudo gem install cocoapods-deintegrate
- 有关
deintegrate
的更多信息,请参见 [this] (https://github.com/kylef/cocoapods-deintegrate)
- 要安装,运行
- 运行
pod init
(如果您删除了Podfile
) - 将您的所有信息添加回
Podfile
减去您要删除的库(如果您删除了Podfile
) - 运行
pod install
此时您的项目应该已备份并且 运行ning。