Install Jekyll on Windows 10
- Not needed but installing a terminal emulator helps a lot like
cmder
. Installer can be found here. - Also helps to get a good text editor like vscode.
- Install Ruby. Make sure to install the one that includes DevKit.
- Install Jekyll by executing this command:
$ gem install jekyll bundler
- At the time of writing, Ruby 3.0 does not include by default a dependency of Jekyll called
webrick
. In the generetaed jekyll site directory, execute the following command:bundle add webrick
.