gitlab 安裝報錯:Could not find modernizr-2.6.2 in any of the sources

 
2014-04-30 15:27:44
標籤: gitlab
原創做品,容許轉載,轉載時請務必以超連接形式標明文章  原始出處 、做者信息和本聲明。不然將追究法律責任。 http://davidbj.blog.51cto.com/4159484/1405062

    gitlab一款開源的代碼版本控制軟件,仿github。安裝過程當中遇到一個問題,糾結了一上午,最終終於搞定了,分享一下:html

 

在安裝deployment時:git

   sudo -u git -H bundle install --deployment --without development test postgresgithub

 

報錯:vim

   Could not find modernizr-2.6.2 in any of the sourcesruby

 

找不到modernizr-2.6.2的庫,更改了幾個source源以後,問題也沒有解決。因而經過wget下載modernizr,再進行安裝:gitlab

     

cd /home/git/gitlabpost

wget http://rubygems.org/downloads/modernizr-2.6.2.gem

gem install modernizrspa

 

而後將Gemfile和Gemfile.lock配置文件的modernizr版本更改爲2.7.1:版本控制

 

vim Gemfilecode

 

gem "modernizr"    "2.6.2"   ===> gem "modernizr-rails",        "2.7.1"

 

vim Gemfile.lock

modernizr  (2.6.2)   ===>     modernizr-rails (2.7.1)

modernizr  (2.6.2)   ===>     modernizr-rails (= 2.7.1)

 

再次執行:

   sudo -u git -H bundle install --deployment --without development test postgres

 

安裝成功!

相關文章
相關標籤/搜索