Home > Blockchain >  How to get rid of "[podname] not installed..." warning?
How to get rid of "[podname] not installed..." warning?

Time:09-16

I (for the life of me) cannot get rid of this warning.

enter image description here

Basically, I originally had the pod SwiftLint installed, but I eventually decided to remove it. To do this, I thought simply removing the line 'pod SwiftLint' from my Podfile, then performing the Terminal command git install would do the trick. Well it did...mostly...except lo and behold, this warning appeared.

Now, I've tried everything I can possibly think of to get rid of this warning, but I have been unsuccessful. Does anybody know how to get rid of this??

Things I've tried:

  • Deintegrated Cocoapods and then re-added only the pods I wanted (I.e. NOT SwiftLint).
  • Deleted the project's DerivedData folder
  • Reinstalled SwiftLint and then deleted it again with the command pod install --no-repo-update
  • Other things which I can't remember

Any help would be much appreciated, thank you.

CodePudding user response:

When you were installing SwiftLint, you probably followed the instructions in the "enter image description here

  • Related