Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bootstrap BuildTools - Bundle Install - Could not locate Gemfile

https://getbootstrap.com/docs/4.0/getting-started/build-tools/

I'm following these instructions to install buildtools on my mac and I'm getting this error.

Could not locate Gemfile

when I run which bundle I get this,

/Applications/MAMP/Library/bin/bundle

The version of ruby is,

ruby 2.3.7p456 (2018-03-28 revision 63024) [universal.x86_64-darwin18]

why can't I finish the bundle install and why is it showing MAMP as my which bundle? What am I doing wrong here, any help would be great.

like image 790
gx2g Avatar asked Nov 16 '22 11:11

gx2g


1 Answers

On https://getbootstrap.com/docs/4.5/getting-started/build-tools/ where it says "install Bundler with gem install bundler, and finally run bundle install", it should probably say to run bundle init before bundle install The init command (for me, anyway) created the missing Gemfile.

like image 184
j4blacka Avatar answered Jan 04 '23 02:01

j4blacka