Ubuntu instala ambos 'feh' e 'slack' (libcurl3 / 4)

2

OS é o Ubuntu 18.04.

Eu instalei o slack via o .deb download .

Eu também quero instalar o feh , visualizador de imagens

$ sudo apt install feh

Resultados em:

The following additional packages will be installed:
  libcurl4
The following packages will be REMOVED
  libcurl3 slack-desktop

Suponho que o slack está sendo desinstalado porque depende de libcurl3 .

Quais são minhas opções para instalar os dois?

Como alternativa, existe um visualizador de imagens igual / melhor que eu possa usar para propósitos de script?

UPDATE

Tentando seguir as instruções de "compilação a partir da origem" para feh , essa resposta confirma que libcurl é a biblioteca de problemas:

$ sudo apt-get install libcurl4-openssl-dev
The following additional packages will be installed:
  libcurl4
The following packages will be REMOVED
  libcurl3 slack-desktop

Não sei as diferenças entre libcurl3 e libcurl4 . Existe alguma maneira de fazê-los tocar muito bem?

    
por Stewart 23.04.2018 / 16:45

2 respostas

1

Além disso, acabei de instalar o feh manualmente a partir do deb hospedado no link e permiti que eu tivesse instalado.

    
por 27.04.2018 / 16:28
1

Esta resposta do suporte do Slack em seg 23 de abril de 2018:

Minha pergunta:

How can I build (compile) or acquire a version of Slack built with libcurl4 instead of libcurl3 ? It basically means I can't install both curl and slack, yet curl is what you recommend in your API tutorial. https://api.slack.com/tutorials/slack-apps-hello-world

Responder:

Thanks for writing in to flag this! The slack-deskop deb requires libcurl3 right now even though libcurl4 should be fine. We have a fix for this dependency issue ready to be released with version 3.2.0, and I can let you know when that happens. In the meantime, you should be able to install the snap package instead: https://slack.com/downloads/linux.

Mais uma atualização do suporte do Slack em segunda-feira, 18 de junho de 2018:

Thanks again for taking the time to report this dependency issue with libcurl. We've released a fix for this problem, and you shouldn't run into it going forward on the latest version of the app. Let me know if you notice anything amiss!

    
por 27.04.2018 / 16:24