2015-06-19 116 views
7

我一直在嘗試使用cocoapods並將它們安裝到我的項目中,但它在嘗試將它安裝到項目位置時給了我這個錯誤。它有點混亂?Pod安裝命令出現錯誤

/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.37.2/lib/cocoapods/command.rb:127: warning: Insecure world writable dir /usr/local in PATH, mode 040777 
/Library/Ruby/Gems/2.0.0/gems/cocoapods-core-0.37.2/lib/cocoapods-core/standard_error.rb:88:in `message': incompatible character encodings: ASCII-8BIT and UTF-8 (Encoding::CompatibilityError) 
    from /Library/Ruby/Gems/2.0.0/gems/claide-0.8.1/lib/claide/command.rb:367:in `handle_exception' 
    from /Library/Ruby/Gems/2.0.0/gems/claide-0.8.1/lib/claide/command.rb:315:in `rescue in run' 
    from /Library/Ruby/Gems/2.0.0/gems/claide-0.8.1/lib/claide/command.rb:303:in `run' 
    from /Library/Ruby/Gems/2.0.0/gems/cocoapods-0.37.2/lib/cocoapods/command.rb:46:in `run' 
    from /Library/Ruby/Gems/2.0.0/gems/cocoapods-0.37.2/bin/pod:44:in `<top (required)>' 
    from /usr/bin/pod:23:in `load' 
    from /usr/bin/pod:23:in `<main>' 

回答

5

用你的podfile中的這個「'」替換這個字符「'」並嘗試再次安裝。

這是發生在我從其他地方(如Evernote)複製pod行時,一些文本編輯器會自動更改此字符。通常是這樣的:

pod 'AFNetworking', '~> 2.0' 

,但是當我從其他編輯器需要,也可能是這樣的:

pod ‘AFNetworking‘, ‘~> 2.0‘ 
+0

讓我知道,如果它的工作Aaoli;) – mgyky

+0

你的驚人@gyer :) – AaoIi

+0

我很高興,如果它解決了Aaoli :) – mgyky

2

按照此步驟:

1.open終端。

2.pod設置//這是需要一定的時間來下載podfiles

3.pod列表//(可選)看到莢

4.cd桌面//(你的項目路徑列表)

5.cd CoacPods(項目名稱)

6.vim podfile

7.pod安裝

1

檢查了這一點chmod go-w/opt/local/bin在shell提示符下(取決於您可能需要sudo來執行此操作的權限)。

+0

沒有結果! – AaoIi