Kxstudio erros de instalação no Ubuntu 17.10

0

Estou usando o Ubuntu 17.10, estou tentando instalar o kxstudio. A mensagem a seguir aparece quando eu tento ativar o kxstudio-repos-gcc5 através do software center eu recebi o seguinte erro de pop-up

Got unknown content type (null) from reviews.ubuntu.com on ubuntu 17.10

e enquanto usa o terminal para fazer a mesma tarefa usando o seguinte comando

sudo dpkg -i kxstudio-repos-gcc5_9.4.6~kxstudio1_all.deb

Recebi o seguinte erro

Preparing to unpack kxstudio-repos-gcc5_9.4.6~kxstudio1_all.deb ...
Unpacking kxstudio-repos-gcc5 (9.4.6~kxstudio1) over (9.4.6~kxstudio1) ...
dpkg: dependency problems prevent configuration of kxstudio-repos-gcc5:
 kxstudio-repos-gcc5 depends on kxstudio-repos; however:
  Package kxstudio-repos is not installed.

dpkg: error processing package kxstudio-repos-gcc5 (--install):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 kxstudio-repos-gcc5

Como posso corrigir esse erro?

    
por User101 16.01.2018 / 09:46

1 resposta

1

Use os repositórios em vez de baixar o .deb

Há uma página detalhada sobre como fazer isso aqui - link

E para o seu pacote ausente:

% bl0ck_qu0te%

e instruções

# Install required dependencies if needed
sudo apt-get install apt-transport-https software-properties-common wget

# Download package file
wget https://launchpad.net/~kxstudio-debian/+archive/kxstudio/+files/kxstudio-repos_9.4.6~kxstudio1_all.deb

# Install it
sudo dpkg -i kxstudio-repos_9.4.6~kxstudio1_all.deb
    
por Panther 16.01.2018 / 15:35