最近我尝试做豆荚设置,我得到这个错误:

-bash: /usr/local/bin/pod: /usr/local/opt/ruby/bin/ruby: bad interpreter: No such file or directory

我按照Ray Wenderlich的指南安装CocoaPods,我遇到了这个问题,所以我不知道发生了什么。


当前回答

重新安装ruby解决我的情况下的问题(错误发生后,我将Mac OS升级到Monterey)。重新安装要花点时间,但很有效

其他回答

brew link --overwrite cocoapods

这句话拯救了我。

vi豆荚 然后将ruby路径2.3 1替换为你使用的路径 终端中的哪个ruby命令 然后做吊舱设置,它将工作 在尝试了所有列出的解决方案后,这对我来说很有效。

升级到High Sierra后,我得到了同样的错误,只是重新安装了cocoapods

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

原始文章中的错误是由于配置不正确的Ruby环境造成的。你永远不应该使用sudo来安装gems,无论你在Stack Overflow上看到多少次它是一个可接受的答案。

基本上,在Mac上建立一个合适的Ruby开发环境包括六个步骤:

Install Homebrew (which also installs the prerequisite Apple command line tools) Install a Ruby manager (such as chruby, rbenv, asdf, RVM) - most of these can be installed with Homebrew Configure the Ruby manager by adding the appropriate lines to your shell file (~/.bash_profile or ~/.zshrc) - each manager will have instructions for doing this, and this is a typical step that people miss Restart the terminal (or open a new tab) for the shell changes to take effect - another step that is often overlooked Install a specific version of Ruby using the Ruby manager Switch to that version of Ruby using the Ruby manager

我个人的偏好是chruby和ruby-install。更多细节和脚本,可以自动化这整个过程,看看我的答案在这里: https://stackoverflow.com/a/54873916/928191

正如已接受的答案所提到的,您也可以用Homebrew安装Ruby,但还需要确保在shell文件中设置了PATH。这方面的说明在我的答案上面链接。

当我尝试再次安装时,我得到了另一个错误

错误:当执行gem…(Gem:: FilePermissionError) 您没有/Library/Ruby/Gems/2.3.0目录的写权限。

然后我这样做了,效果很好。

sudo gem uninstall cocoapods

sudo gem install cocoapods