pod install –verbose –no-repo-update
This command installs only newly added libraries and ignores updated libraries
Pod update library name –verbose –no-repo-update
This command updates only the specified libraries, ignoring other libraries
When you need to delete an unwanted library from CocoaPods, you can delete the library directly from your Podfile
Go to the project directory and run the pod update –verbose –no-repo-update or pod install –verbose –no-repo-update command
The difference between the two when deleting:
Pod update –verbose –no-repo-update updates other library versions as related libraries are removed
Pod update library name –verbose –no-repo-update
Pod install –verbose –no-repo-update will only delete the related libraries
The difference between the two installation time:
Pod install –verbose –no-repo-update only installs newly added libraries
Pod update –verbose –no-repo-update updates other library versions when the relevant library is installed
Pod update library name –verbose –no-repo-update updates only the specified library, ignoring other libraries
My personal recommendation is to use Podfile to delete a library to be upgraded, then add it, and finally run pod install –verbose –no-repo-update