cocoapods 사용 시 알림 오류 fetchinghttp://ruby.taobao.org/: bad response Not Found 404

2694 단어 iOS 개발
문제 설명
cocoapods 사용 시 알림 오류 fetchinghttp://ruby.taobao.org/: bad response Not Found 404
$ sudo gem install cocoapods
  Password:
  ERROR:  Could not find a valid gem 'cocoapods' (>= 0), here is why: Unable to download data from http://ruby.taobao.org/ - bad response Not Found 404 (http://ruby.taobao.org/specs.4.8.gz)

2. 문제 해결
이 유 는 taobao 가 https 를 켜 고 http 를 폐기 해서 http 로 연결 할 수 없 기 때 문 일 수 있 습 니 다.다음 과 같다.
$ gem sources -a http://ruby.taobao.org/
  Error fetching http://ruby.taobao.org/:
    bad response Not Found 404 (http://ruby.taobao.org/specs.4.8.gz)

그래서 먼저 원본 을 제거 하고 사용 합 니 다.https://ruby.taobao.org
$ gem sources --remove http://ruby.taobao.org/
  http://ruby.taobao.org/ removed from sources

$ gem sources -a https://ruby.taobao.org/
  https://ruby.taobao.org/ added to sources

$ gem sources -l
  *** CURRENT SOURCES ***

  https://ruby.taobao.org/


$ sudo gem install cocoapods
  Fetching: nap-1.1.0.gem (100%)
  Successfully installed nap-1.1.0
  Fetching: molinillo-0.4.4.gem (100%)
  Successfully installed molinillo-0.4.4
  ……

좋은 웹페이지 즐겨찾기