Minimal-mistakes: Cannot run jekyll serve

Created on 8 Nov 2016  路  2Comments  路  Source: mmistakes/minimal-mistakes

I followed the quick start directions:

Quick Start

Add this line to your Jekyll site's Gemfile:

gem "minimal-mistakes-jekyll"
Add this line to your Jekyll site's _config.yml file:

theme: minimal-mistakes-jekyll
Then run Bundler to install the theme gem and dependencies:

bundle install
To update the theme run bundle update.

Then I run jekyll serve and I get this error down below.

C:/tools/ruby23/lib/ruby/gems/2.3.0/gems/bundler-1.13.6/lib/bundler/runtime.rb:40:in block in setup': You have already activated addressable 2.5.0, but your Gemfile requires addressable 2.4.0. Prependingbundle exec` to your command may s
olve this. (Gem::LoadError)

Support

Most helpful comment

You have to run bundle exec jekyll serve in order to make it works.
It's like you have installed all the gems locally in your working directory instead of installing them globally on the system. So jekyll (wich is global) doesn't know the gems you've installed locally.

All 2 comments

You have to run bundle exec jekyll serve in order to make it works.
It's like you have installed all the gems locally in your working directory instead of installing them globally on the system. So jekyll (wich is global) doesn't know the gems you've installed locally.

Man, you right!!!! _jumping up and down_
Thanks flohw. You made my night.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

m1evankaiser picture m1evankaiser  路  3Comments

z0ph picture z0ph  路  3Comments

svoner picture svoner  路  3Comments

lgyjg picture lgyjg  路  5Comments

muhasturk picture muhasturk  路  3Comments