Created
February 24, 2010 16:55
-
-
Save ryanjm/313609 to your computer and use it in GitHub Desktop.
Issues with bad interpreter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Something else I found helpful along the way (as I had old stuff installed): | |
gem uninstall --install-dir /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8 rails |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zsh: /usr/local/bin/spec: bad interpreter: /usr/local/bin/ruby: no such file or directory | |
The issue is that my ruby isn't installed at /usr/local/bin/ruby but rather /usr/bin/ruby therefore I created a simlink. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zsh: /usr/local/bin/bundle: bad interpreter: /usr/local/bin/ruby: no such file or directory | |
% which ruby | |
/usr/bin/ruby | |
% cd /usr/local/bin/ | |
/usr/local/bin% ln -s /usr/bin/ruby ruby |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have this problem, thanks for the explanation.