安装特定的 gdal 版本

安装特定的 gdal 版本

我想安装 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.

答案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

相关内容