2016-01-22 200 views
5

當我安裝Pod時。它顯示了這樣的錯誤。如何解決這個問題?如何解決Pod安裝錯誤?

Your Podfile has had smart quotes sanitised. To avoid issues in the future, you should not use TextEdit for editing it. If you are not using TextEdit, you should turn off smart quotes in your editor of choice.

我發現了這樣一個解決方案:

$ cd <parentDirectory of Podfile> 
$ open -a Xcode Podfile` 

如果我把它這樣,它顯示了錯誤:

「Podfile」 can’t be opened because it is from an unidentified developer.

回答

11

請在Xcode編輯Podfile。

在Xcode中打開你的Podfile。 編輯它。 保存。

當您使用文本編輯POD的文件編輯

pod ‘Fabric’, ‘~> 1.7.1′ //notice the quotes 

打開Podfile和Xcode。

pod 'Fabric', '~> 1.7.1' //notice the quotes 

從文件夾中刪除Podfile.lock

關閉Xcode項目。

執行pod install

打開ProjectName.xcworkspace文件。

+0

請告訴我清楚是iOS的新手。我已經在我的'Xcode'中打開了我的'podfile'。在那我需要編輯和保存。 – RAGHUNATH

+0

只需檢查podfile中的引號,如果引號稍微交叉,則將其刪除並添加。它應該看起來像答案中的第二種情況。 – technerd

+0

如果此答案有幫助,請將其標記爲已接受,所以其他人會發現它有幫助。謝謝 – technerd