web-dev-qa-db-ja.com

頑丈なインストール中にエラーが発生しました

このチュートリアル[ link ]に従って、gitlabを専用サーバーにインストールします。する必要がある :

Sudo -u git -H bundle install --deployment --without development test postgres aws

しかし、ruggedのインストール中にエラーが発生しました:

Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

    /usr/local/bin/Ruby extconf.rb
checking for cmake... no
ERROR: CMake is required to build Rugged.
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of necessary
libraries and/or headers.  Check the mkmf.log file for more details.  You may
need configuration options.

Provided configuration options:
    --with-opt-dir
    --without-opt-dir
    --with-opt-include
    --without-opt-include=${opt-dir}/include
    --with-opt-lib
    --without-opt-lib=${opt-dir}/lib
    --with-make-prog
    --without-make-prog
    --srcdir=.
    --curdir
    --Ruby=/usr/local/bin/Ruby


    Gem files will remain installed in /home/git/gitlab/vendor/bundle/Ruby/2.0.0/gems/rugged-0.21.2 for inspection.
    Results logged to /home/git/gitlab/vendor/bundle/Ruby/2.0.0/gems/rugged-0.21.2/ext/rugged/gem_make.out
    An error occurred while installing rugged (0.21.2), and Bundler cannot continue.
    Make sure that `gem install rugged -v '0.21.2'` succeeds before bundling.

だから私は頑丈にインストールしました->私はCMakeとconfig-pkgをインストールしました:

/home/git/gitlab$ Sudo gem install rugged
Building native extensions.  This could take a while...
Successfully installed rugged-0.21.2
Parsing documentation for rugged-0.21.2
unable to convert "\xC0" from ASCII-8BIT to UTF-8 for lib/rugged/rugged.so, skipping
1 gem installed

しかし、それは何も変えません:

Errno::EACCES: Permission denied - /home/git/gitlab/vendor/bundle/Ruby/2.0.0/gems/rugged-0.21.2/LICENSE
An error occurred while installing rugged (0.21.2), and Bundler cannot continue.
Make sure that `gem install rugged -v '0.21.2'` succeeds before bundling.

何か案が ?

44
plieb

最初に、cmakeをインストールしてみてください。

Sudo apt-get install cmake

次に、コマンドを繰り返します。

Sudo -u git -H bundle install --deployment --without development test postgres aws
58
xoska74

OSBでhomebrewを使用している場合:

brew install cmake 
bundle install
69
Joe

私にとって、gemはpkg-configが依存関係を失っていると不平を言っていました。

Sudo apt-get install pkg-config

その後

Sudo gem install rugged -v '0.22.2'

その後、古いバージョンのgitlabに戻り、アップグレードのためにスクリプトを再実行します。

私の古いバージョンのgitlabは6.9.2で、アップグレードされたバージョンは8.0.5

4

Mac OSX 10.6以降では、次のURLを参照してください。

http://www.cmake.org/download/

0
railsfreak

その方法でのみこの問題を修正できます:

https://cmake.org/download/ からダウンロードします。ダウンロードしたtarファイルを解凍してから、次を実行します。

cd $CMAKE_DOWNLOAD_PATH
./configure
make
make install

そして、この手順の後、私は正常に実行できました:

gem install rugged -v '0.26.0'
0
Siarhei Manko