You can build the site locally using Jekyll by following the steps detailed here:
- Check whether you have Ruby 2.1.0 or higher installed with
ruby --version
, otherwise install it. On OS X for instance, this can be done withbrew install ruby
. Make sure you also haveruby-dev
andzlib1g-dev
installed. - Install Bundler
gem install bundler
. If you run into issues with installing bundler on OS X, have a look here for troubleshooting tips. Also try refreshing the terminal. - Clone the repo locally:
git clone https://github.com/sebastianruder/NLP-progress
- Navigate to the repo with
cd NLP-progress
- Install Jekyll:
bundle install
- Run the Jekyll site locally:
bundle exec jekyll serve
- You can now preview the local Jekyll site in your browser at
http://localhost:4000
.