bundle exec pod install
上記のコマンドを実行すると以下のようなエラーが出力されます
zsh: /usr/local/bin/bundle: bad interpreter: /System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/bin/ruby: no such file or directory Traceback (most recent call last): 2: from /usr/bin/bundle:23:in `<main>' 1: from /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems.rb:302:in `activate_bin_path' /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems.rb:283:in `find_spec_for_exe': Could not find 'bundler' (2.1.4) required by your /Users/hodoru/Documents/ToolBox/github/shurting-app-ios/Gemfile.lock. (Gem::GemNotFoundException) To update to the latest version installed on your system, run `bundle update --bundler`. To install the missing version, run `gem install bundler:2.1.4`
色々いじっていてsource ~/.bashrc のコマンドを打てばpodのインストールができるようになるのですがターミナルを再起動するたびに上記のコマンドを打たなければなれず、すごく不便です。このコマンドを打たなくする方法はあるんでしょうか?
.bashrcファイルの中身は以下のようになっています。
[[ -d ~/.rbenv ]] && \ export PATH=${HOME}/.rbenv/bin:${PATH} && \ eval "$(rbenv init -)"export PATH="$HOME/.rbenv/bin:$PATH" export PATH="$HOME/.rbenv/bin:$PATH" eval "$(rbenv init -)"
あなたの回答
tips
プレビュー