rubygems / rubygems

Library packaging and distribution for Ruby.
https://rubygems.org/
Other
3.66k stars 1.74k forks source link

Project ERROR: No QtWebKit installation found. QtWebKit is no longer included with Qt 5.6, so you may need to install it separately. #4266

Closed waqar-akram-se closed 3 years ago

waqar-akram-se commented 3 years ago

Describe the problem as clearly as you can

Hi I'm facing an error when I run this command. bundle install Can you please help me to resolve this.

Post steps to reproduce the problem

Which command did you run?

bundle install

What were you expecting to happen?

installed bundle package successfully.

What actually happened?

Project ERROR: No QtWebKit installation found. QtWebKit is no longer included with Qt 5.6, so you may need to install it separately.

If not included with the output of your command, run bundle env and paste the output below

Gemfile

Gemfile

source 'https://rubygems.org'

ruby '2.3.3'
gem 'autoprefixer-rails', '~> 7.1.5'
gem 'bcrypt', '~> 3.1.7'
gem 'bundler'
gem 'celluloid'
gem 'devise'
gem 'devise-async'
gem 'drip-ruby', require: 'drip'
gem 'flutie', '~> 2.0.0'
gem 'google-api-client', '~> 0.11'
gem 'googleauth'
gem 'i18n-tasks', '~> 0.9.21'
gem 'rainbow', '~> 2.2.2'
gem 'mixpanel-ruby', '~> 2.2.0'
gem 'mixpanel_client', '~> 4.1.6'
gem 'pg', '~> 0.21.0'
gem 'premailer-rails'
gem 'puma', '~> 3.11.3'
gem 'rack-attack', '~> 5.0.1'
gem 'rack-canonical-host', '~> 0.2.3'
gem 'rack-cors', require: 'rack/cors'
gem 'rack-timeout', '~> 0.4.2'
gem 'rails', '~> 5.0.1'
gem 'redis-rails', '~> 5.0.2'
gem 'sendgrid-ruby', '~> 5.2.0'
gem 'sentry-raven', '~> 2.7.1'
gem 'sidekiq', '~> 5.0', '>= 5.0.4'
gem 'sidekiq-limit_fetch'
gem 'simple_form', '~> 3.5.0'
gem 'title', '~> 0.0.7'
gem 'uglifier', '~> 3.2.0'
gem 'nio4r','~> 2.3.0'
gem 'rails_admin', '~> 1.3'
# source 'https://rails-assets.org' do
#   gem 'rails-assets-jquery', '~> 3.2.1'
#   gem 'rails-assets-jquery-ujs', '~> 1.2.2'
# end

group :development do
  gem 'better_errors', '~> 2.3.0'
  gem 'binding_of_caller', '~> 0.8.0'
  gem 'derailed', '~> 0.1.0'
  gem 'faker', '~> 1.8.4'
  gem 'spring', '~> 2.0.2'
  gem 'spring-commands-rspec', '~> 1.0.4'
  gem 'stairs', '~> 0.10.0'
end

group :development, :staging do
  gem 'bullet', '~> 5.7.3'
end

group :development, :test do
  gem 'bundler-audit', '~> 0.6.0', require: false
  gem 'dotenv-rails', '~> 2.2.1'
  gem 'factory_girl_rails', '~> 4.8.0'
  gem 'listen', '~> 3.1.5'
  gem 'pry-byebug', '~> 3.5.0'
  gem 'pry-rails', '~> 0.3.6'
  gem 'rspec-rails', '~> 3.6.1'
  gem 'rubocop', '~> 0.51.0'
end

group :test do
  gem 'capybara-webkit', '~> 1.14.0'
  gem 'database_cleaner', '<= 1.6.1'
  gem 'launchy', '~> 2.4.3'
  gem 'rspec-sidekiq', '~> 3.0.3'
  gem 'shoulda-matchers', '~> 3.1.2', require: false
  gem 'simplecov', require: false
  gem 'timecop', '~> 0.9.1'
end

Gemfile.lock

deivid-rodriguez commented 3 years ago

Hi!

This sounds like an issue with installing the capybara-webkit dependency. You most likely need to install some OS package in order to use it. I recommend you google the error message for solutions,or look in the capybara-webkit project. Development has been suspended but you might find some help in the issue tracker.

Closing since this is not a problem in rubygems.