Today I had to reinstall my Linux installation because my harddisk died a quick dead. While configuring
all the software I use to develop I got some weird error after I’d installed rbenv and tried to execute bundle install
on one of our projects.
The error
The following error was raised when I tried to install capybara-webkit
1 2 3 4 5 6 7 8 9 10 |
|
The solution
I first thought there were some problems with make
or cmake
because
that’s what the error says. qmake: not found
, but that didn’t seem to be te real
problem.
After some googlefoo I found out that I was missing the libqtwebkit-dev
package. So the
problem in this case was easily resolved by running:
1
|
|