簡體   English   中英

Ruby Gemfile無法添加PostgreSQL gem

[英]Ruby Gemfile can not add the PostgreSQL gem

這是我的Gemfile:

source 'https://rubygems.org'

#my added gems
gem 'pg', '~> 0.17.1'
gem 'rails_12factor', '0.0.2'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.1.0'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.3'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer',  platforms: :ruby

# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0',          group: :doc

# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring',        group: :development

您可以在第四行看到為pg gem添加的行。 在終端中保存並運行bundle install ,出現以下錯誤,並顯示以下錯誤:

An error occurred while installing pg (0.17.1), and Bundler cannot continue.
Make sure that `gem install pg -v '0.17.1'` succeeds before bundling.

有人知道如何解決這個問題嗎?

捆綁安裝之前,您是否嘗試過該提示信息?

 gem install pg -v '0.17.1'

另外,如果您在本地運行此程序,並且需要postrgre只是將應用程序部署到類似Heroku的服務器(您在本地使用sqlite / mysql),則將其添加到生產環境中,如下所示:

 group :production do
   gem 'pg'
 end

並運行

   bundle install 

再次。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM