2014-08-28 6 views
3

복제 한 프로젝트를 설치하려고합니다. 번들을 다운 그레이드 할 수 없습니다.

$ bundle install 
Bundler could not find compatible versions for gem "bundler": 
In Gemfile: 
rails (= 3.0.0) ruby depends on 
bundler (~> 1.0.0) ruby 

Current Bundler version: 
bundler (1.6.2) 

This Gemfile requires a different version of Bundler. 
Perhaps you need to update Bundler by running `gem install bundler`? 

그래서 나는 다음과 같은 한 : 나는 '번들이 설치'할 때 나는 다음과 같은 메시지가

gem uninstall bundler 
gem install bundler --version '1.0.0' 
Successfully installed bundler-1.0.0 
1 gem installed 

내가 '설치 번들'마시기, 나는 동일한 메시지를 가지고 유지 :

$ bundle install 
Bundler could not find compatible versions for gem "bundler": 
In Gemfile: 
rails (= 3.0.0) ruby depends on 
bundler (~> 1.0.0) ruby 

Current Bundler version: 
bundler (1.6.2) 

This Gemfile requires a different version of Bundler. 

Perhaps you need to update Bundler by running `gem install bundler`? 

내가 묶는 사람을 '1.0.0'버전으로 다운 그레이드 할 수없는 것 같습니다.

답변

1

당신이 Bundler를 여러 버전이 필요하지 않은 경우, 당신은 제거 최신 버전 :

$ gem uninstall bundler 
: 둘 이상의있는 경우

$ gem uninstall bundler -v 1.6.2 

당신도 들러 버전 목록에서 선택할 수 있습니다

관련 문제