$ gem install jekyll
$ jekyll new my-awesome-site
New jekyll site installed in /home/root/blog/Jekyll/my-awesome-site.
Dependency Error: Yikes! It looks like you don't have bundler or one of its dependencies installed. In order to use Jekyll as currently configured, you'll need to install this gem. The full error message from Ruby is: 'cannot load such file -- bundler' If you run into trouble, you can find helpful resources at http://jekyllrb.com/help/!
jekyll 3.3.1 | Error: bundler
答案 0 :(得分:5)
就像您可以在documentation中阅读一样,您在bundler
中错过了gem install jekyll bundler
。
所以:gem install bundler
,一切都会好的。