安装特定的Gdal版本


0

我想安装gdal 2.1。*版本:

apt-cache show gdal-bin | grep Version
Version: 2.2.2+dfsg-1~trusty1
Version: 2.1.0+dfsg-1~trusty2
Version: 1.10.1+dfsg-5ubuntu1

但是有问题:

sudo apt-get install gdal-bin=2.1.0+dfsg-1~trusty2
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:
 gdal-bin : Depends: gdal-abi-2-1-0
E: Unable to correct problems, you have held broken packages.

输出是sudo apt install gdal-abi-2-1-0什么?
奥林戎

Answers:


1

解决了,但是也许可以以更自动化的方式完成?

1。

apt-cache search gdal-abi
libgdal20 - Geospatial Data Abstraction Library

2。

apt-cache show libgdal20 | grep Version
Version: 2.2.2+dfsg-1~trusty1
Version: 2.1.0+dfsg-1~trusty2

3。

sudo apt-get install libgdal20=2.1.0+dfsg-1~trusty2
sudo apt-get install gdal-bin=2.1.0+dfsg-1~trusty2
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.