Error installing jekyll

Published:

ERROR: {exc}”)ERROR: Error installing jekyll: ERROR: Failed to build gem native extension.

Problem:

when I tried to sudo gem install jekyll

Then error message:

ERROR:  Error installing jekyll:
	ERROR: Failed to build gem native extension.

    current directory: /var/lib/gems/2.6.0/gems/eventmachine-1.2.7/ext
/usr/bin/ruby2.6 -I /usr/lib/ruby/2.6.0 -r ./siteconf20210319-11937-1qfj5k6.rb extconf.rb
mkmf.rb can't find header files for ruby at /usr/lib/ruby/include/ruby.h

You might have to install separate package for the ruby development
environment, ruby-dev or ruby-devel for example.

extconf failed, exit code 1

Gem files will remain installed in /var/lib/gems/2.6.0/gems/eventmachine-1.2.7 for inspection.
Results logged to /var/lib/gems/2.6.0/extensions/x86_64-linux/2.6.0/eventmachine-1.2.7/gem_make.out

Solve:

Install ruby2.6 dev version

sudo apt-get install ruby-dev2.6

Then

bundle install

Finally you can

bundle exec jekyll serve

:)