当给定的安装过程是使用 pip3 安装时,如何离线安装/更新 rasterio?

当给定的安装过程是使用 pip3 安装时,如何离线安装/更新 rasterio?

https://github.com/mapbox/rasterio/blob/master/docs/installation.rst

我使用以下命令安装了 rasterio:

$ sudo add-apt-repository ppa:ubuntugis/ppa
$ sudo apt-get update
$ pip3 install rasterio

当我输入时rasterio.__version__我会得到1.0.8最新的内容。

但 synaptic 包管理器显示:0.36.0 为最新版本 突触版本并在存储库网站中:Ubuntugis-稳定版 在此处输入图片描述还显示0.36.0-~xenial0` 作为版本:通过 synaptic 直接安装

我有一个无法访问互联网的系统,我必须安装这个 rasterio 的最新版本。

有没有办法直接从 github 安装?或者更新我的系统的存储库?

答案1

由于您使用 pip3 安装,因此您应该使用 pip3 进行升级。例如:

pip3 install --upgrade rasterio

来自手册页:

-U, --upgrade

    Upgrade all specified packages to the newest available version. The handling of dependencies depends on the upgrade-strategy used.

相关内容