https://github.com/mapbox/rasterio/blob/master/docs/installation.rst
I installed the rasterio using these commands:
$ sudo add-apt-repository ppa:ubuntugis/ppa
$ sudo apt-get update
$ pip3 install rasterio
When I type rasterio.__version__
I get 1.0.8
which is latest.
But the synaptic package manager shows: 0.36.0 as the latest version
and in the repository website: Ubuntugis-stable also shows 0.36.0-
~xenial0` as the version:
I have a system which does not have access to internet, where I have to install this rasterio's latest version.
Is there any way to install from github directly? or to update my system's repositories?
Since you installed with pip3 you should upgrade with pip3. For example:
pip3 install --upgrade rasterio
From the man page: