我正在学习this教程,以便在我的Centos上设置gitlab。
执行此命令时:
bundle exec rake gitlab:setup RAILS_ENV=production --trace
我得到了这个错误:
rake aborted!
libicui18n.so.54: cannot open shared object file: No such file or directory
- /home/git/gitlab/vendor/bundle/ruby/2.1.0/extensions/x86_64-linux/
2.1.0-static/charlock_holmes-0.6.9.4/charlock_holmes/charlock_holmes.so已安装charlock_holmes。还有什么问题呢?
发布于 2015-02-01 17:46:23
看看comment in issue 7 of charlock_holmes是否适用于您的情况。
这是在gitlabhd issue 8381中提到的。
我的(overkill)解决方案是重新安装包:
mv /home/git/gitlab/vendor/bundle/ruby /home/git/gitlab/vendor/bundle/ruby.orig(该问题是由于重新安装charlock_holmes造成的
sudo -u git -H bundle install --deployment --without development test postgres aws)
在您的情况下,您将重复gitlab安装过程。
https://stackoverflow.com/questions/28261354
复制相似问题