Ubuntu sdk não sendo instalado 12.04

-1

Primeiro eu usei o comando composto dado aqui mas ele deu alguns erros, então eu executei cada comando separadamente para que eu possa descobrir onde está o erro. Adicionar repositório e atualização foi bom, mas:

asim@ubuntu:~$ sudo apt-get install ubuntu-sdk
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 ubuntu-sdk : Depends: qtcreator-plugin-ubuntu-cordova but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
asim@ubuntu:~$ 

Eu decidi instalar qtcreator-plugin-ubuntu-cordova separadamente, então:

asim@ubuntu:~$ sudo apt-get install qtcreator-plugin-ubuntu-cordova
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 qtcreator-plugin-ubuntu-cordova : Depends: qtcreator-plugin-ubuntu (= 2.8.1bzr56precise0) but 2.8.1bzr57precise0 is to be installed
E: Unable to correct problems, you have held broken packages.
asim@ubuntu:~$ 

Aqui, achei que forçar a versão correta do pacote funcionaria bem, mas novamente:

asim@ubuntu:~$ sudo apt-get install qtcreator-plugin-ubuntu-cordova =2.8.1bzr57precise0
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package 
asim@ubuntu:~$ 

Alguém pode me ajudar? Eu tenho feito desenvolvimento web em php, mas acabei de decidir dar uma chance ao desenvolvimento de software no Ubuntu.

Editar

apt-cache policy qtcreator-plugin-ubuntu-cordova qtcreator-plugin-ubuntu ubuntu-sdk dá:

root@ubuntu:/home/asim# apt-cache policy qtcreator-plugin-ubuntu-cordova qtcreator-plugin-ubuntu ubuntu-sdk
qtcreator-plugin-ubuntu-cordova:
  Installed: (none)
  Candidate: 2.8.1bzr56precise0
  Version table:
     2.8.1bzr56precise0 0
        500 http://ppa.launchpad.net/ubuntu-sdk-team/ppa/ubuntu/ precise/main amd64 Packages
qtcreator-plugin-ubuntu:
  Installed: 2.8.1bzr57precise0
  Candidate: 2.8.1bzr57precise0
  Version table:
 *** 2.8.1bzr57precise0 0
        500 http://ppa.launchpad.net/ubuntu-sdk-team/ppa/ubuntu/ precise/main amd64 Packages
        100 /var/lib/dpkg/status
ubuntu-sdk:
  Installed: (none)
  Candidate: 1.009~sdkppa~precise1~test6
  Version table:
     1.009~sdkppa~precise1~test6 0
        500 http://ppa.launchpad.net/ubuntu-sdk-team/ppa/ubuntu/ precise/main amd64 Packages
    
por Asim 15.12.2013 / 03:50

1 resposta

0

Eu encontrei uma maneira de fazer isso.

  1. desinstalar pacote conflitante: sudo apt-get remove qtcreator-plugin-ubuntu
  2. Faça o download e instale o pacote necessário: 2.8.1bzr56precise0 faça o download aqui (após o download, clique duas vezes no Ubuntu Software Center, selecione install)
  3. instale o Ubuntu SDK: sudo apt-get instale o ubuntu-sdk (ele adicionará o pacote cordova necessário)

Aproveite o Ubuntu SDK;)

    
por alexscmar 17.12.2013 / 03:04