I am trying to install capybara-webkit stone on Amazon Linux AMI 2017.09 release.
I tried following the instructions for installing CentOS (possibly the wrong approach):
sudo yum install -y epel-release
sudo yum install -y qt5-qtwebkit-devel
The first package installed perfectly, but qt5-qtwebkit-devel
gave the following error:
Error: Package: qt5-qtbase-gui-5.6.1-3.el6.x86_64 (epel)
Requires: libgdk-x11-2.0.so.0()(64bit)
Error: Package: qt5-qtbase-gui-5.6.1-3.el6.x86_64 (epel)
Requires: libgdk_pixbuf-2.0.so.0()(64bit)
Error: Package: qt5-qtbase-gui-5.6.1-3.el6.x86_64 (epel)
Requires: libatk-1.0.so.0()(64bit)
Error: Package: qt5-qtbase-gui-5.6.1-3.el6.x86_64 (epel)
Requires: libgtk-x11-2.0.so.0()(64bit)
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
I cannot resolve dependency libgdk_pixbuf-2.0.so.0
on Amazon Linux. I tried to install libX11-devel
, but this did not solve the problem.
Of course, it gem install capybara-webkit -v '1.10.1'
fails because qt5 is not installed.
I found a blog with instructions for installing capybara with qt-4.8 , I would rather use the latest version and would rather use the package manager instead of linking the package manually.
: capybara-webkit Amazon Linux AMI ?