gitlab一款開源的代碼版本控制軟件,仿github。安裝過程中遇到一個(gè)問題,糾結(jié)了一上午,最終終于搞定了,分享一下:
在安裝deployment時(shí):
sudo -u git -H bundle install --deployment --without development test postgres
報(bào)錯(cuò):
Could not find modernizr-2.6.2 in any of the sources
找不到modernizr-2.6.2的庫,更改了幾個(gè)source源之后,問題也沒有解決。于是通過wget下載modernizr,再進(jìn)行安裝:
cd /home/git/gitlab
wget http://rubygems.org/downloads/modernizr-2.6.2.gem
gem install modernizr
然后將Gemfile和Gemfile.lock配置文件的modernizr版本更改成2.7.1:
vim Gemfile
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)
再次執(zhí)行:
sudo -u git -H bundle install --deployment --without development test postgres
安裝成功!
本文出自 “David” 博客,請務(wù)必保留此出處http://davidbj.blog.51cto.com/4159484/1405062
聯(lián)系客服