Hello friends, I’m here to tell you that you can now have your cake and eat it, too! I have been dabbling with Jekyll for a few months, trying to get this blog off the ground. I can now say I have found the most straightforward way to do it in Windows.
But before proceeding with my obligatory “Hello World” blog, some full disclosure. I am a solid Windows user–have been since Windows 95. Don’t get me wrong, I’ve had a special place in my heart for Linux/Unix since college. I am all about open source and open architectures and my faith in Microsoft has at times been tested (Windows Vista, 8, death of Silverlight, anyone?). But their recent efforts with open sourcing .NET and the cross-platform .NET Core1 are very heartening, to say the least. I love C#, and if I can’t run Visual Studio Enterprise2 on it, it’s not my base OS (sorry, I am not a die-hard emacs or vi user!). These days, I mostly stick with Linux on my Raspberry Pis and occasionally on virtual machines.
So if you’ve ever tried to run Jekyll on Windows, you can understand why it’s not an officially supported platform3. To be fair, this is a Ruby application that was never designed to cater to Windows. As such, it is non-trivial getting all the required tools and versions to play nicely in Windows. I started out with the de-facto excellent approach to get Jekyll up and running on Windows. I’m sure if I had stuck with the versions listed by the author I would have been fine. But I tend to want the latest and greatest! After following the instructions and getting Ruby, the Ruby Dev Kit, and Jekyll and all other required gems installed, I was getting dependency errors when trying to serve up a default blog4 with Jekyll 3.2.1. I saw there had been a problem with Jekyll 3.2.0 on Windows, with a quick update to 3.2.1 to fix it5, so it seemed like this latest version should work. After several gem update && gem cleanup
commands, I finally got it to serve up a default webpage without errors. However, the styles weren’t applied and the pages didn’t render correctly. Luckily I stumbled on an idea to try a previous version6 of Jekyll:
This worked! I then ran gem update
and got back to Jekyll 3.2.1 and it continued to work. But it didn’t sit well with me to have the tool so unstable on the same set of source files. Now, I’m obviously no Ruby or web developer. I just need something simple that allows me to easily spit out a static website to host on Github. At this point, I was ready to try another more Windows friendly HTML generation engine. But I kept gravitating back to Jekyll because of the amount of support it enjoys–that and it has the best theme variety!
I uninstalled everything and tried the other method listed on Jekyll’s Windows page using Chocolately7 , as well as a portable Jekyll package8–both with similar unsettling results. It all kind of seemed like a hack job. Around this time I considered using a Linux virtual machine to host a Jekyll installation, but it seems fate was on my side. I had just a day or two previously received the Windows 10 Anniversary update (version 1607). What does this have to do with the price of rice in China, you ask?
Enter the Windows Subsystem for Linux (WSL)9.
What this means is that we now can compile and run Linux binaries natively on Windows 10! Mind blown. Now this was something I had to play with. I want to mention that I didn’t find any examples of specifically running Jekyll from WSL, but I did come across plenty of people worried about potential vulnerabilities exposed in general by enabling this feature. However, I found this insightful article which helped put my mind at ease. Anyway, your security is in your own hands so proceed at your own risk.
Enabling this feature in Windows was a breeze. Just enable it in Windows Features, run bash
from a command prompt, then set your UNIX user name and password (my machine was already in Developer mode). See this excellent guide for more details.
Now that is amazing! Ubuntu bash commands available on Windows, including apt-get
to obtain Linux binaries. So now to install Ruby. I found some great tutorials on how to do this with RVM. I found the steps in this Ruby on Rails blog post the most helpful. To summarize:
After running the previous command to install Ruby, my command line spit out some garbage text and appeared hung. Luckily, the Rails post mentioned above addressed this as well (thank you!):
RVM will do some stuff, and ask you for your password. Enter the password you set up earlier, then push enter. You will likely be prompted 2-3 times to enter your password. The prompts might be hard to read (they were on my machine due to a weird terminal corruption glitch) so if it appears stuck, try typing your password and pressing enter.
That worked fine, then I could complete my installation of Ruby.
Awesome! On to installing Jekyll. Again, from the Jekyll Quick-start guide:
Unfortunately, after the second command, I was greeted with the following:
Again, the Rails post from above to the rescue!
One gotcha to look out for, if you have an issue with bundler blowing up, running the following command should fix it:
Which allowed me to complete the remaining Jekyll Quick-start guide commands:
Success! I browsed to http://localhost:4000
and the default webpage was rendered correctly! However, I did have a warning about the file system watcher not being supported. After a bit of research, it became evident that WSL does not currently support this feature, and the workaround is to use the no-watch argument. At the time of this writing, I am using Jekyll 3.3.3 and the following warning is exhibited:
I don’t really care about the real time re-generation, so I just serve my sites with the following command:
One last tidbit from the Rails post from above (standard Linux but I include it here because it was an excellent reminder for me):
You may wish to create a symlink to your Documents folder in your Windows environment. To do so run the following command:
ln -s /mnt/c/Users//Documents ~/Documents
. Make sure to replace `` with your username.
Also, for reference see this this other thorough guide I found, which includes alternative steps for installing Ruby.
So now I have a stable Jekyll build environment with easy access to/from my Windows OS. I would love to continue about my journey picking out this theme and modifying it to better fit my tastes. But this is long-winded enough, so that will have to wait for another post. All in all, the initial pain of setting up Jekyll on WSL was much less than it was directly on Windows. I have had no problems building this site with Jekyll in WSL and I would definitely recommend this approach if you are on Windows.
-
https://2buntu.com/articles/1529/visual-studio-code-comes-to-linux/ ↩
-
https://jekyllrb.com/news/2016/08/02/jekyll-3-2-1-released/ ↩
-
https://davidburela.wordpress.com/2015/11/28/easily-install-jekyll-on-windows-with-3-command-prompt-entries-and-chocolatey/ ↩
-
http://www.madhur.co.in/blog/2013/07/20/buildportablejekyll.html ↩
-
https://blogs.msdn.microsoft.com/wsl/2016/07/08/bash-on-ubuntu-on-windows-10-anniversary-update/ ↩