Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

JRuby: Command not found even after install and link

Options
  • 29-09-2017 9:46am
    #1
    Registered Users Posts: 5,576 ✭✭✭


    Not sure whats up with this issue...
    Warning: jruby 9.1.13.0 is already installed, it's just not linked.
    You can use brew link jruby to link this version.
    

    So i link it
    IEC02MGFCKFD57:whitelabel-dev-aws rfra0006$ brew link jruby
    Linking /usr/local/Cellar/jruby/9.1.13.0... 0 symlinks created
    

    So after linking it, it still get problem
    IEC02MGFCKFD57:whitelabel-dev-aws rfra0006$ jruby
    -bash: jruby: command not found
    
    Tagged:


Comments

  • Registered Users Posts: 6,171 ✭✭✭Talisman


    If you're using Homebrew make sure it's up to date.
    brew update
    
    The unlinked package message can be a sign that a previous installation attempt failed. Try removing the package:
    brew remove jruby
    
    If it is successfully removed then reinstall it:
    brew install jruby
    


Advertisement