Como posso instalar o QtWebEngine no Ubuntu

Quando um programa QML (por exemplo, Ethereum,instalado a partir do PPA neste caso) tenta

import QtWebEngine 1.0
import QtWebEngine.experimental 1.0

Então eu recebo esses erros

file:////usr/share/mist/qml/views/browser.qml:5 module "QtWebEngine" is not installed
file:////usr/share/mist/qml/views/browser.qml:6 module "QtWebEngine.experimental" is not installed

QtWebEngine está emQt 5.4 que é o que eu instalei

#> qmake --version
QMake version 3.0
Using Qt version 5.4.0 in /usr/lib/x86_64-linux-gnu

Eu tenteiconstruir o QtWebEngine eu mesmo mas sem alegria:

#> git clone [email protected]:qt-labs/qtwebengine.git
Cloning into 'qtwebengine'...
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

1) Por que o QtWebEngine não está instalado se estiver no Qt 5.4, queé instalado?

2) Existe uma maneira de instalá-lo além de construí-lo eu mesmo?

3) O que há de errado com ogit clone comando?

Obrigado pela leitura. Estou fazendo isso no Ubuntu 14.10.

questionAnswers(2)

yourAnswerToTheQuestion