I'm trying to install Jekyll on a Raspberry Pi 3 with Raspbian Jessie on it.
I already have the latest LTS nodejs 4.4.7 and I've updated Gem to the latest version by doing:
sudo gem update --system
Then I installed Ruby by doing:
sudo apt-get install ruby-full
However, after doing
ruby -v
I get the version number as ruby 2.1.5. The latest version is 2.3.1.
I tried to install the source code by downloading it from ruby's website then ran the following commands after unzipping the source folder:
./configure
make
sudo make install
After I did that, I went to see what version ruby is, it's still at 2.1.5.
Did anyone else play with Jekyll on a Raspberry Pi 3 before? Though I do have ruby 2.1.5 but I get this error message when I run:
jekyll -v
"Dependency Error: Yikes! It looks like you don't have classifier or one of its dependencies installed. In order to use Jekyll as currently configured, you'll need to install this gem..."
How do I fix this problem? (Sorry, I'm a newbie.)