gitlab 安装报错:Could not find modernizr-2.6.2 in any of the sources
? ? gitlab一款開源的代碼版本控制軟件,仿github。安裝過程中遇到一個問題,糾結了一上午,最終終于搞定了,分享一下:
在安裝deployment時:
? ?sudo -u git -H bundle install --deployment --without development test postgres
報錯:
? ?Could not find modernizr-2.6.2 in any of the sources
找不到modernizr-2.6.2的庫,更改了幾個source源之后,問題也沒有解決。于是通過wget下載modernizr,再進行安裝:
? ? ?
cd /home/git/gitlab
wget http://rubygems.org/downloads/modernizr-2.6.2.gemgem 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)
再次執行:
? ?sudo -u git -H bundle install --deployment --without development test postgres
安裝成功!
本文出自 “David” 博客,請務必保留此出處http://davidbj.blog.51cto.com/4159484/1405062
總結
以上是生活随笔為你收集整理的gitlab 安装报错:Could not find modernizr-2.6.2 in any of the sources的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Bundler 的作用及原理
- 下一篇: 在centos6.5中安装 GitLab