Getting a “bad interpreter” error when using brew

前端 未结 12 1407
半阙折子戏
半阙折子戏 2020-12-01 14:13

I\'m getting this error when I try to run any brew command.

Holger-Sindbaeks-MacBook-Air:~ holgersindbaek$ brew help
-bash: /usr/local/bin/brew: /usr/bin/rub         


        
相关标签:
12条回答
  • 2020-12-01 14:17

    I got the same issue when updated to MacOSX High Sierra & using Xcode 9 with that. High Sierra update ruby gem to version 2.3 but xcpreety command of Xcode 9 still using Ruby 2.0 which is unable to find now & gives bad interpreter. Just go to Terminal & run

    sudo gem install xcpretty
    

    Restart Xcode & do fresh clean build it works for me. Hope it helps!!!

    0 讨论(0)
  • 2020-12-01 14:18

    I solved it with commands as mentioned.

    1.) Uninstall your GEM.

    gem unistall GEM

    2.) Then Install your GEM.

    sudo gem install GEM -n /usr/local/bin

    0 讨论(0)
  • 2020-12-01 14:19

    In my case seems like fastlane installed incorrectly with brew install fastlane system didn't write correct path to fastlane. I fixed it with alias fastlane=~/.fastlane/bin/fastlane

    0 讨论(0)
  • 2020-12-01 14:25

    What you are getting means that Homebrew has not been able to locate the Ruby interpretter at the specified location.

    Install Apple Developer Kit (comes with Xcode) which should be available to you as an optional install (or you can simply download it from Apple). This will install the Ruby interpreter for you.

    In case you already have Xcode installed, this means that one of these things is happening:

    1. You have a broken Ruby installation
    2. You have more than one Ruby installation
    3. Your installation has not been configured properly.

    To identify if this is the first case, you can run ruby and see if you get any response.

    If you don't, your installation is broken and you need to reinstall it. If you do, you then run which ruby. This should give you the absolute path to your Ruby executable. If this is anything other than /usr/bin/ruby then homebrew (and a bunch of other programs) will not be able to find it.

    In case you have not ever tampered with your Ruby installation, you can check to see if /usr/bin/ruby already exists or not: cat /usr/bin/ruby. If you get No such file or directory, then you can easily create a symbolic link to your Ruby installation. Assuming the output of which ruby to by /usr/local/bin/ruby, you create the symbolic link this way: sudo ln -s /usr/local/bin/ruby /usr/bin/ruby and all should be well.

    If there is a file at that location, you can run file /usr/bin/ruby to see if it's a real file, a symbolic link, or a corrupted file. If it is a symbolic link, your installation should be working, and since it's not, it probably is either a corrupted symlink or it's a bogus file.

    You can remedy that by first deleting it (sudo rm /usr/bin/ruby) and then creating a new symlink to the correct location (sudo ln -s /usr/local/bin/ruby /usr/bin/ruby).

    If non of the above works, you should consult the homebrew team after a clean install of Xcode and removing any traces of a Ruby installation on your system.

    EDIT

    Alternatively, as pointed out by the other answers, the issue might be because of a bad ruby version in your Homebrew settings.

    A quick fix might be updating your Homebrew:

    cd /usr/local
    git pull -q origin refs/heads/master:refs/remotes/origin/master
    

    If this does not help, you might want to get your hands dirty and manually fix the problem by:

    1. Editing brew.rb from /user/local/Library/brew.rb
    2. Changing /1.8/ to /Current/ in the first line, which will cause the hashbang to point to the current Ruby version as the executor

    If this does not help, either, you can also modify the MACOS check and change it from 10.5 to 10 to avoid the infamous "Homebrew requires Leopard or higher" error.

    DISCLAIMER

    A bunch of thanks to other contributors in the answers below and their commenters. I am not committing plagiarism, simply aggregating the answers into one integrated article to help others.

    0 讨论(0)
  • 2020-12-01 14:27

    I got bad interpreter: No such file or directory error when used xcpretty and xcpretty-travis-formatter on upgraded MacOS.

    To solve it

    gem install xcpretty
    gem install xcpretty-travis-formatter
    

    That is why I can recommend you to reinstall failed component gem install <name>

    #For example error looks like
    /usr/local/bin/xcpretty-travis-formatter: /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/bin/ruby: bad interpreter: No such file or directory
    
    #use
    gem install xcpretty-travis-formatter
    
    0 讨论(0)
  • 2020-12-01 14:30

    After upgrading to macOS High Sierra, get it fixed with following commands:

    sudo gem install cocoapods

    0 讨论(0)
提交回复
热议问题