Installation of Jekyll on Windows 10
12 Feb 2017Below are the procedures I used to install Jekyll with problem solvers:
Main reference sites:
Jekyll on Windows
Easily install Jekyll on Windows with 3 command prompt entries and Chocolatey
Procedures:
- Open Powershell
- Run Powershell as administrator: [Reference]
Start-Process powershell -Verb runAs
- Change execution policy to enable installation of Chocolatey (a package manager): [Reference]
Set-ExecutionPolicy RemoteSigned
- Installing Chocolatey: [Reference]
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
- Update the certificate to install ruby: [Reference]
http://guides.rubygems.org/ssl-certificate-update/ - Install ruby:
choco install ruby -y
- Close the window and open a new command prompt with Administrator access (i.e. step 2)
- Install gem bundler
gem install bundler
- Install Jekyll
gem install jekyll
- Done :)