Installed Ruby on Rails but when I try to run Rails Sever it doesn't load WEBrick?

后端 未结 5 1101
别跟我提以往
别跟我提以往 2021-01-15 09:24

I installed Ruby on Rails on my mac today along with Gems and MYsql. I\'m trying to follow the lynda.com tutorial and I\'ve run into a brick wall. When I try to run the rail

5条回答
  •  一整个雨季
    2021-01-15 09:39

    You do seem to have permissions issues with your gems directory. Try resolving that with:

    sudo find /Library/Ruby/Gems/1.8/gems/ -type d -exec chmod 755 '{}' +
    

提交回复
热议问题