git clone git://github.com/imathis/octopress.git octopress
cd octopress
安装 bundler
12
gem install bundler
bundle install
如果在安装 bundler 出现以下错误
1234
ERROR: Loading command: install (LoadError) cannot load such file -- zlib
ERROR: While executing gem ... (NameError) uninitialized constant Gem::Commands::InstallCommand
这是由于缺少zlib openssl 库的支持,安装zlib和openssl
12345678
cd /usr/local/rvm/src/ruby-1.9.2-p320/ext/zlib
ruby ./extconf.rb
make
make install
cd /usr/local/rvm/src/ruby-1.9.2-p320/ext/openssl
ruby ./extconf.rb
make
make install