最近我尝试做豆荚设置,我得到这个错误:
-bash: /usr/local/bin/pod: /usr/local/opt/ruby/bin/ruby: bad interpreter: No such file or directory
我按照Ray Wenderlich的指南安装CocoaPods,我遇到了这个问题,所以我不知道发生了什么。
最近我尝试做豆荚设置,我得到这个错误:
-bash: /usr/local/bin/pod: /usr/local/opt/ruby/bin/ruby: bad interpreter: No such file or directory
我按照Ray Wenderlich的指南安装CocoaPods,我遇到了这个问题,所以我不知道发生了什么。
当前回答
这发生在我升级到卡特琳娜的时候。 我通过跑步来解决这个问题:
sudo gem install -n /usr/local/bin ruby
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。这方面的说明在我的答案上面链接。
我把系统从Sierra升级到Mojave时也遇到过同样的问题。也为卡特琳娜工作
以下步骤起作用了:
sudo gem update --system
sudo gem install -n /usr/local/bin cocoapods
我从下面的链接得到了帮助。
固定与
brew upgrade cocoapods
下面的方法对我很有效:
在XCode中选择命令行工具。 XCode >首选项>位置>命令行工具> XCode 11.X.X x 在终端执行: 安装cocoapods -n /usr/local/bin
https://stackoverflow.com/a/60464653
找到pod文件。我的位于usr/local/bin/pod
您会发现顶部一行显示的是版本2.3。将此文件编辑为正确的版本号。保存一份原件以防你搞砸了。
再次尝试与荚相关的命令。
我试了好几天,还是成功了。