-
Gem::GemNotFoundException: can't find gem bundler (= 2.4.13) with executable bundle
Bundler 2.4.13
Built At 2023-05-10
gemfile
../../../../../../opt/homebrew/Cellar/shopify-cli/3.46.1/libexec/lib/node_modules/@shopify/theme/node_modules/@shopify/cli-kit/assets/cli-ruby/Gemfile.lock
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@ibis-git The error message indicates that Bundler version 2.4.13 is not found or executable. To resolve this issue, you can try the following steps:
Everything should be done in the directory where Gemfile is also present. If it was helpful, please mark as answer. |
Beta Was this translation helpful? Give feedback.
-
Closing since this was answered in detail! |
Beta Was this translation helpful? Give feedback.
@ibis-git The error message indicates that Bundler version 2.4.13 is not found or executable.
To resolve this issue, you can try the following steps:
Verify the installed version of Bundler by running
gem list bundler
in your terminal. Make sure that version 2.4.13 is listed.If Bundler version 2.4.13 is not installed, you can install it by running
gem install bundler -v 2.4.13
.If Bundler version 2.4.13 is already installed, you can try uninstalling it first by running
gem uninstall bundler -v 2.4.13
and then reinstalling it using the previous command.After ensuring that Bundler version 2.4.13 is installed, you can try running your desired command again.
If the issue persists, i…