Just cannot get redmine to work

前端 未结 2 1501
误落风尘
误落风尘 2021-01-15 14:39

So, I\'ve been trying to get redmine to work with following all kinds of tutorials around the web, but I always get stuck at the same step :

G:\\Ruby187\\app         


        
2条回答
  •  执笔经年
    2021-01-15 15:12

    The problem seems to be with your version of rake - from the RedmineInstall requirements section:

    Rake 0.8.7 is required (rake 0.9.x is not supported by Rails yet)

    You'll need to uninstall the currently installed version of rake:

    gem uninstall -v=0.9.2 rake
    

    (answer y)

    and install an older version:

    gem install -v=0.8.7 rake
    

    See also this message on the redmine forum

提交回复
热议问题