centos7.5系统bitnami redmine 安装Agile插件遇到的问题总结

执行  bundle install --without development test --no-deployment 会报一些bundle 命令找不到

这种情况安装bundle相关依赖就行

后面继续执行这句话后假如出现下面问题:

Building native extensions.  This could take a while...
ERROR:  Error installing rails:
    ERROR: Failed to build gem native extension.

则执行

sudo yum install -y gcc ruby-devel zlib-devel libxml2 libxml2-devel libxslt libxslt-devel make

If it still fails, try to build it with the --use-system-libraries build option.

gem install nokogiri -- --use-system-libraries

If all else fails, install it from the EPEL repository.

sudo yum install -y epel-release
sudo yum install -y rubygem-nokogiri

常规操作:

 

你可能感兴趣的:(【软件项目管理】)