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
安裝成功!