Add installing devel libraries to fedora
I followed the troubleshooting and came up with `sudo gem install jekyll` unable to generate the binary file because the development libraries were not installed on my system. Per [fedoraproject.org -- Gems](https://developer.fedoraproject.org/tech/languages/ruby/gems-installation.html) this is necessary to install this. The instructions mirror what is listed on that page, but using `yum` instead of `dnf` - which is understandable because RH and CentOS still use `yum`.
This commit is contained in:
parent
c795acd09f
commit
bd0cdcd4cb
|
@ -28,6 +28,7 @@ On Red Hat, CentOS, and Fedora systems you can do this by running:
|
|||
|
||||
{% highlight bash %}
|
||||
sudo yum install ruby-devel
|
||||
sudo yum group install "C Development Tools and Libraries"
|
||||
{% endhighlight %}
|
||||
|
||||
On [NearlyFreeSpeech](https://www.nearlyfreespeech.net/) you need to run the
|
||||
|
|
Loading…
Reference in New Issue