cmd
PS C:\Users\----\Documents\blog\beautiful-jekyll-master> bundle exec jekyll serve
fatal: not a git repository (or any of the parent directories): .git
Configuration file: C:/Users/hideki/Documents/blog/beautiful-jekyll-master/_config.yml
Dependency Error: Yikes! It looks like you don't have tzinfo 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 -- tzinfo' If you run into trouble, you can find helpful resources at https://jekyllrb.com/help/!
jekyll 3.8.7 | Error: tzinfo
Wenn Sie einen solchen Fehler erhalten, schreiben Sie den schönen Jekyll-Master / Gemfile wie folgt um.
beautiful-jekyll-master/Gemfile
# frozen_string_literal: true
source "https://rubygems.org"
gem 'tzinfo', '~> 2.0'
gem 'tzinfo-data', '~> 1.2020', '>= 1.2020.1'
gemspec
Damit wieder
cmd
PS> bundle install
Wenn Sie dies tun, sollte es funktionieren.
Ich habe den obigen Fehler erhalten, also habe ich tzinfo hinzugefügt und gem hat es installiert, aber es hat nicht funktioniert. Es scheint, dass tzinfo-Daten für Windows notwendig sind, also habe ich es gem installiert, aber es hat nicht funktioniert. Schließlich habe ich alles auf einmal mit der oben beschriebenen Methode installiert und es hat funktioniert.