Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CesarBMartinez/660230e7fad786b58a68cacf2cd709ad to your computer and use it in GitHub Desktop.
Save CesarBMartinez/660230e7fad786b58a68cacf2cd709ad to your computer and use it in GitHub Desktop.
How to Install Jekyll on Windows 10 (WSL)
# How to Install Jekyll on Windows 10 (WSL)
# Install Ubuntu for Windows 10
# On Ubuntu terminal
$ sudo apt-get update -y && sudo apt-get upgrade -y
$ sudo apt-get install ruby-full
$ sudo gem update --system
$ sudo apt-get install build-essential --no-install-recommends
$ sudo gem install jekyll bundler
# Notice the /mnt/c/ in that directory path. That’s a mapping to your C:\ drive.
# From there, you have access to all your files just as God intended.
$ cd /mnt/c/Users/<your username>/Desktop
$ jekyll new mynewblog && cd mynewblog
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment