Bundler :: GemfileNotFound when trying to install cms

An error occurred while trying to install the CMS. It saysBundler::GemfileNotFound

Also, when I run bundle, it also saysBundler::GemfileNotFound

How to fix it?

+5
source share
1 answer

I think you get this error because you didn’t make it to the directory.

ie, rails new project_example

then you do

cd project_example (cd stands for change directory)

it moves you inside the project ...

then you run this command

+12
source

All Articles