2012-09-03 28 views
0

我正在嘗試生成一個八度的博客。當我耙部署我得到這個錯誤:Octopress Posix錯誤

Could not find posix-spawn-0.3.6 in any of the sources 
Run `bundle install` to install missing gems. 

bundle install: 
Using rake (0.9.2.2) 
Using RedCloth (4.2.9) 
Using posix-spawn (0.3.6) 
Using albino (1.3.3) 
Using blankslate (2.1.2.4) 
Using chunky_png (1.2.6) 
Using fast-stemmer (1.0.1) 
Using classifier (1.3.3) 
Using fssm (0.2.9) 
Using sass (3.2.1) 
Using compass (0.12.2) 
Using directory_watcher (1.4.1) 
Using ffi (1.0.11) 
Using haml (3.1.7) 
Using kramdown (0.13.8) 
Using liquid (2.3.0) 
Using syntax (1.0.0) 
Using maruku (0.6.0) 
Using jekyll (0.11.2) 
Using rubypython (0.5.3) 
Using pygments.rb (0.2.13) 
Using rack (1.4.1) 
Using rack-protection (1.2.0) 
Using rb-fsevent (0.9.1) 
Using rdiscount (1.6.8) 
Using rubypants (0.2.0) 
Using tilt (1.3.3) 
Using sinatra (1.3.3) 
Using stringex (1.4.0) 
Using bundler (1.1.5) 
Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is  
installed. 

我已經安裝了POSIX的產卵的正確版本,所以我不知道如何解決這個問題的錯誤。我甚至用我的軟件包管理器重新編譯了它,並且仍然得到相同的錯誤。

- Gemfile中

source "http://rubygems.org" 

group :development do 
    gem 'rake', '~> 0.9.2'                                                                
    gem 'rack', '~> 1.4.1' 
    gem 'jekyll', '~> 0.11.2'                                                               
    gem 'rdiscount', '~> 1.6.8' 
    gem 'pygments.rb', '~> 0.2.12'                                                              
    gem 'RedCloth', '~> 4.2.9' 
    gem 'haml', '~> 3.1.6'                                                                
    gem 'compass', '~> 0.12.1' 
    gem 'rubypants', '~> 0.2.0'                                                               
    gem 'rb-fsevent', '~> 0.9' 
    gem 'stringex', '~> 1.4.0'                                                               
    gem 'liquid', '~> 2.3.0' 
end                                                                     

gem 'sinatra', '~> 1.3.2'   
+0

請將您的'Gemfile' – Dru

+0

添加。它是一個標準的octpress安裝在arch linux – Dolores

+0

posix-spawn-0.3.6.gem在rubygems或你的本地沒有找到 - 所以你需要找到它是否是網絡中斷,或者本地文件不能像你想象的那樣訪問。 –

回答