How to Install Jekyll on Windows?
Last Updated :
23 Jul, 2025
Jekyll is a static site generator. It takes text written in your favourite markup language and uses layouts to create a static website. You can tweak the site's look and feel, URLs, the data displayed on the page, and more. Jekyll was first released by Tom Preston-Werner in 2008. Jekyll was later taken over by Parker Moore, who led the effort to release Jekyll 1 and has been the new maintainer since then. Jekyll started a web development trend towards static websites. As of 2017, Jekyll is the most popular static site generator, largely due to its adoption by GitHub.
Prerequisites
Make sure the following is installed on your machine before you start:
- System Requirement: Although Jekyll can be used with Windows 10 or later, this instruction is intended for users of Windows 10 and above.
- Ruby and DevKit: Since Ruby is used to build Jekyll, your system must have Ruby and its development kit installed.
- Git: Git is necessary for version control and repository management on your Jekyll site.
Features
- Jekyll is software that helps you “generate” or create a static website
- Jekyll is well suited for users who would like to have all content within source control (Git) along with the code used to produce the website. Because everything it produces is static assets (HTML, CSS, etc.), sites created with Jekyll are super fast, with very little needed on the server side of things.
Installation of Jekyll on Windows
Step 1: At first we have to search jekyllrb.com in Google Chrome or any other browser

Step 2: Then we have to go to the Docs tab for the further procedure.

Step 3: Then we have to go for the Installation link which is on the side of the menu

Step 4: On the installation page, we will find that we have to install the ruby installer for installing Jekyll.

Step 5: Then we have to write rubyinstaller.org in any browser

Step 6: Then we have to go for the Download option

Step 7: Then we will go for 1st option Ruby+Devkit 3.2.2.1 (x64)

Step 8: Then we have to start the installation by accepting their terms & conditions & press next at all times.
Step 9: Then the software will open & we have to enter 1 for further procedure.

Step 10: We have to open the command prompt by writing cmd in the Start menu.
Step 11: Then we have to write the following instructions step by step:
gem -v
cd c:/
mkdir projects
cd projects

Step 12: Then we have to write the command Jekyll the web appthe timesin the command prompt.

Step 13: Then we have to wait until all processes are executed. Then we have to write the following command in the command prompt:
code .

Step 14: After inputting the last instruction in the command prompt it will open in any text editor installed in the device. There you have to change the title to the web app.

Step 15: Then we have to enter two instructions again in the command prompt (Do not close command prompt previously)
cd webapp
bundle exec jekyll serve

Step 16: Then we have to search for localhost in the browser.

Step 17: At last after searching the above text you can show that your software is installed successfully.

Conclusion
There are a few steps involved in installing Jekyll on Windows, but once it's up and running, you have a powerful tool for building static web pages. Jekyll is a versatile and effective solution for publishing your work online, regardless of whether you're creating a personal blog or a professional portfolio.
Also Read
Similar Reads
How to Install Julia on Windows ? Julia is a programming language used for statistical computations and data analysis. Julia is a combination of super-fast execution speed of C and flexible code writing of Python. Working with Julia is considered to be super fun and super easy among the Computer scientists and Software Engineers, be
3 min read
How to Install Krita on Windows? Krita is a free and open-source raster graphics editor designed primarily for digital painting and 2D animation. It runs on Windows, macOS, Linux, Android, and Chrome OS. It is developed by Krita foundations. It is written in C++ using Qt. It is released on 21 June 2005. The size of the software is
3 min read
How to Install Node.js on Windows Installing Node.js on Windows is a straightforward process, but it's essential to follow the right steps to ensure smooth setup and proper functioning of Node Package Manager (NPM), which is crucial for managing dependencies and packages. This guide will walk you through the official site, NVM, Wind
6 min read
How to Install jekyll-paginate gem on Windows? A Jekyll-paginate gem is an excellent tool that allows you to easily split your content into multiple pages. In this guide, we will walk you through the process of installing the Jekyll-paginate gem and integrating it into your Jekyll project. Whether you are new to Jekyll or an experienced user, th
4 min read
How to Install iPython on Windows? Ipython is a toolkit used for using Python interactively using a Python shell and also provides a Jupyter kernel to work with Python code in Jupyter notebooks. In this article, we will look into the process of installing ipython package on Windows. Pre-requisites: The only thing that you need for in
2 min read
How to Install Notepad++ on Windows? Notepad++ is free and open-source computer software that is mainly used as a code editor or text editor. It was developed by Don Ho. It is available in nearly 90 languages. It provides the ability to work with multiple files in a single window. It is available for Windows operating system only. It w
2 min read