0

システムにココア ポッドをインストールしているときに、次のエラーが発生しました。

エラー :

https://github.com/CocoaPods/Specs.git「[!]という名前の URL を持つソースを追加できません。 で、または 経由master-1で手動で追加してみてください。」~/.cocoapods/repospod repo add

ポッドファイル:

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'Demo' do
  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

  # Pods for Demo

  target 'DemoTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'DemoUITests' do
    inherit! :search_paths
    # Pods for testing
  end
 pod 'AZSClient'
  pod 'CardIO'
  pod 'Google/Analytics'
  pod 'OpenTok'
  pod 'THCalendarDatePicker', '~> 1.2.6'
end
4

3 に答える 3

0

私は同じ問題を抱えており、必要なココアとココアポッドのバージョンが一致しないために発生することもありました.

私の解決策は次のとおりです。

pod repo remove master
pod setup
pod install

それでも問題が解決しない場合は、お知らせください。

これでポッドファイルを変更します:

`# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'Demo' do
  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  # use_frameworks!

  # Pods for Demo

 pod 'AZSClient'
  pod 'CardIO'
  pod 'Google/Analytics'
  pod 'OpenTok'
  pod 'THCalendarDatePicker', '~> 1.2.6'
end`

  target 'DemoTests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'DemoUITests' do
    inherit! :search_paths
    # Pods for testing
  end
于 2017-01-05T04:53:17.877 に答える