16

GITLABをインストールしようとしています。" " を実行すると、このエラーが発生します(「 Install Gemssudo gem install charlock_holmes --version '0.6.9'」セクション) 。

GEOGIT:/geogit/Administrative_Tools # sudo gem install charlock_holmes --version '0.6.9'
Building native extensions.  This could take a while...
ERROR:  Error installing charlock_holmes:
        ERROR: Failed to build gem native extension.

        /usr/bin/ruby1.9 extconf.rb
checking for main() in -licui18n... no
which: no brew in (/usr/sbin:/bin:/usr/bin:/sbin)
checking for main() in -licui18n... no

***************************************************************************************
*********** icu required (brew install icu4c or apt-get install libicu-dev) ***********
***************************************************************************************
*** 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}/
        --with-make-prog
        --without-make-prog
        --srcdir=.
        --curdir
        --ruby=/usr/bin/ruby1.9
        --with-icu-dir
        --without-icu-dir
        --with-icu-include
        --without-icu-include=${icu-dir}/include
        --with-icu-lib
        --without-icu-lib=${icu-dir}/
        --with-icui18nlib
        --without-icui18nlib
        --with-icui18nlib
        --without-icui18nlib

Gem files will remain installed in /usr/lib64/ruby/gems/1.9.1/gems/charlock_holmes-0.6.9 for inspection.
Results logged to /usr/lib64/ruby/gems/1.9.1/gems/charlock_holmes-0.6.9/ext/charlock_holmes/gem_make.out

誰か、それらのログとエラーのデバッグを手伝ってくれませんか?

4

6 に答える 6

33

これは問題1952のように見えます

私のubuntu VPSの委託方法は実際には奇妙でした。私のものには、明らかにCコンパイラまたはlibdevが付属していませんでした。

私が見つけた問題の修正はlibdev、最初にインストールしてから GCC
Thenをインストールすることでしたapt-get install libicu-dev

2015 年更新: 追加のコメントは次のとおりです。

yum install libicu-devel私のために働いた

patch" " がインストールされている ( )ことを確認するだけyum install patchで、動作するはずです

于 2013-03-21T19:10:01.713 に答える
1

ドキュメント ( https://github.com/gitlabhq/gitlabhq/blob/master/doc/install/installation.md ) によると、パッケージ libicu-dev が必要です

「apt-get install libicu-dev」でインストールすると、charlock_holmes がインストールされます。

于 2013-05-14T12:47:50.543 に答える