Estou tentando instalar o QGIS3 no meu Ubuntu 16.04 Xenial.
Seguindo as instruções no site da QGIS , adicionei as seguintes linhas às fontes.list:
deb https://qgis.org/ubuntugis xenial main
deb-src https://qgis.org/ubuntugis xenial main
eu corro
sudo apt-get update
e tente executar a instalação:
sudo apt-get install qgis python-qgis qgis-plugin-grass
Para cada um dos pacotes, recebo a resposta de que existem vários pacotes ausentes:
python-qgis : Depends: python-qgis-common (= 1:3.0.0+24xenial-ubuntugis) but it is not going to be installed
Depends: libqgispython3.0.0 but it is not going to be installed
Depends: libqgis-analysis3.0.0 but it is not going to be installed
Depends: libqgis-core3.0.0 but it is not going to be installed
Depends: libqgis-gui3.0.0 but it is not going to be installed
Depends: libqgis-server3.0.0 but it is not going to be installed
qgis : Depends: gdal-abi-2-2-2 but it is not installable
Depends: libgdal20 (>= 1.8.0) but it is not installable
Depends: libqgis-analysis3.0.0 but it is not going to be installed
Depends: libqgis-app3.0.0 but it is not going to be installed
Depends: libqgis-core3.0.0 but it is not going to be installed
Depends: libqgis-gui3.0.0 but it is not going to be installed
Depends: qgis-providers (= 1:3.0.0+24xenial-ubuntugis) but it is not going to be installed
qgis-plugin-grass : Depends: qgis-provider-grass (= 1:3.0.0+24xenial-ubuntugis) but it is not going to be installed
Depends: libgdal20 (>= 1.8.0) but it is not installable
Depends: libqgis-app3.0.0 but it is not going to be installed
Depends: libqgis-core3.0.0 but it is not going to be installed
Depends: libqgis-gui3.0.0 but it is not going to be installed
Depends: libqgisgrass7-3.0.0 but it is not going to be installed
Depends: grass740 but it is not installable
O mais interessante é que alguns pacotes não são instaláveis: gdal-abi-2-2-2, libgdal20, grass740
Alguma idéia de como resolver isso?
Respostas:
Testado 29/06/2018
fonte
Para o QGIS3 no xenial, você deve usar o ppa ubuntugis-unstable
fonte
universe
era necessário para ser habilitado no meu Ubuntus para fazer o trabalho (caso contrário, eu tenho um monte de 'não vai ser instalado' coisas)Se você tem conda, você pode fazer:
Fonte: https://github.com/conda-forge/qgis-feedstock/issues/17#issuecomment-373871708
fonte
#/etc/source.list.d/ubuntugis.list deb https://qgis.org/ubuntugis xenial main deb-src https://qgis.org/ubuntugis xenial main
e
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable sudo apt update sudo apt install qgis
é o que meu colega parece ter descoberto.
Antes disso, consegui instalá-lo baixando manualmente todos os arquivos * .deb de dependência em https://qgis.org/ubuntugis/pool/main/q/qgis/ e instalando-os com o gdebi.
fonte
Eu consegui instalar o QGis 3.4 no Ubuntu 16.04 removendo o link simbólico libsqlite3.so.0
fonte
Eu tenho o computador Linux Mint 18.3 (Ubuntu 16.04), segui as seguintes diretrizes:
No entanto, eu ainda estava recebendo erros de dependência não gerenciados. Por isso, tentei com aptidão o seguinte:
sudo aptitude instalar qgis python-qgis
Para resolver a dependência que eu selecionei:
e aceitou a solução proposta. Depois que o gerenciador de pacotes instalou todas as bibliotecas qgis, pude observar o qgis 3.4.4 Maedira na minha tela com alegria.
fonte