I'm using this site as my online home.
My goals:
- consolidate my online content
- make this my start page
- inventory my work here
- Install Jekyll:
gem install jekyll
- Fork this repository
- Clone it:
git clone https://github.com/YOUR-USER/projectname
- Run the jekyll server:
jekyll --server
You should have a server up and running locally at http://localhost:4000.
I had problems wiht the "gem install jekyll" command. I kept getting errors like this:
- ERROR: Error installing jekyll:
- make: /usr/bin/gcc-4.2: No such file or directory
The fix required me to do two things:
- install the XCode developer tools:
- In XCode, go to Preferences > Downloads, then install "Command Line Tools" (reference)
- add a symbolic link to my gcc directory: ln -s /usr/bin/gcc /usr/bin/gcc-4.2
From there, the system worked as expected.