Created
May 16, 2014 05:05
-
-
Save timani/3e84fa8afafc0ce57f22 to your computer and use it in GitHub Desktop.
Installing Octopress - Fedora 20 http://webdesign.tutsplus.com/tutorials/getting-started-with-octopress--webdesign-11442
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git clone git://github.com/imathis/octopress.git portal | |
Cloning into 'portal'... | |
remote: Reusing existing pack: 10374, done. | |
remote: Counting objects: 23, done. | |
remote: Compressing objects: 100% (22/22), done. | |
remote: Total 10397 (delta 7), reused 3 (delta 1) | |
Receiving objects: 100% (10397/10397), 2.75 MiB | 727.00 KiB/s, done. | |
Resolving deltas: 100% (4975/4975), done. | |
Checking connectivity... done. | |
$ cd portal/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ gem install bundler | |
Fetching: bundler-1.6.2.gem (100%) | |
Successfully installed bundler-1.6.2 | |
Parsing documentation for bundler-1.6.2 | |
Installing ri documentation for bundler-1.6.2 | |
Done installing documentation for bundler after 4 seconds | |
1 gem installed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ bundle install | |
Fetching gem metadata from https://rubygems.org/....... | |
Fetching additional metadata from https://rubygems.org/.. | |
Installing rake 0.9.2.2 | |
Installing RedCloth 4.2.9 | |
Installing chunky_png 1.2.5 | |
Installing fast-stemmer 1.0.1 | |
Installing classifier 1.3.3 | |
Installing fssm 0.2.9 | |
Installing sass 3.2.9 | |
Installing compass 0.12.2 | |
Installing directory_watcher 1.4.1 | |
Installing haml 3.1.7 | |
Installing kramdown 0.13.8 | |
Installing liquid 2.3.0 | |
Installing syntax 1.0.0 | |
Installing maruku 0.6.1 | |
Installing posix-spawn 0.3.6 | |
Using yajl-ruby 1.1.0 | |
Installing pygments.rb 0.3.4 | |
Installing jekyll 0.12.0 | |
Installing rack 1.5.2 | |
Installing rack-protection 1.5.0 | |
Installing rb-fsevent 0.9.1 | |
Installing rdiscount 2.0.7.3 | |
Installing rubypants 0.2.0 | |
Installing sass-globbing 1.0.0 | |
Installing tilt 1.3.7 | |
Installing sinatra 1.4.2 | |
Installing stringex 1.4.0 | |
Using bundler 1.6.2 | |
Your bundle is complete! | |
Use `bundle show [gemname]` to see where a bundled gem is installed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ rake install | |
## Copying classic theme into ./source and ./sass | |
mkdir -p source | |
cp -r .themes/classic/source/. source | |
mkdir -p sass | |
cp -r .themes/classic/sass/. sass | |
mkdir -p source/_posts | |
mkdir -p public |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment