Post

Setup Jekyll in WSL

This attempt at a blog is done with Jekyll and the Chirpy theme.

After following the guide for chirpy and downloading a copy of the repository I used WSL for the local jekyll installation.

1
2
3
4
5
6
7
8
9
10
11
sudo apt-get install -y ruby-full build-essential zlib1g-dev
echo '# Install Ruby Gems to ~/gems' >> ~/.bashrc
echo 'export GEM_HOME="$HOME/gems"' >> ~/.bashrc
echo 'export PATH="$HOME/gems/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc

gem install bundler
gem install jekyll --version 3.9.2

cd repositoryfolder
bundle exec jekyll serve
This post is licensed under CC BY 4.0 by the author.