How to get GDAL >= 2.0.0 on Ubuntu 16.04 LTS?
I have some software programmed in R using sf
package, which require GDAL version >= 2.0.0.
But Ubuntu Xenial 16.04 LTS has only 1.11.3+dfsg-3build2.
How can I get GDAL version >= 2.0.0 on 16.04 LTS?
16.04 r gis
add a comment |
I have some software programmed in R using sf
package, which require GDAL version >= 2.0.0.
But Ubuntu Xenial 16.04 LTS has only 1.11.3+dfsg-3build2.
How can I get GDAL version >= 2.0.0 on 16.04 LTS?
16.04 r gis
add a comment |
I have some software programmed in R using sf
package, which require GDAL version >= 2.0.0.
But Ubuntu Xenial 16.04 LTS has only 1.11.3+dfsg-3build2.
How can I get GDAL version >= 2.0.0 on 16.04 LTS?
16.04 r gis
I have some software programmed in R using sf
package, which require GDAL version >= 2.0.0.
But Ubuntu Xenial 16.04 LTS has only 1.11.3+dfsg-3build2.
How can I get GDAL version >= 2.0.0 on 16.04 LTS?
16.04 r gis
16.04 r gis
asked Aug 23 '18 at 16:17
N0rbertN0rbert
21.6k547101
21.6k547101
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Try adding ubuntugis-unstable
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable
sudo apt-get update
and install packages from it.
sudo apt-get install libgdal-dev
As ppa:nextgis/dev
caused me a some trouble when installing sp package
here and seem to also cause there
(DISCLAMER: I'm not running pure Ubuntu, but Linux Mint which is based on Ubuntu 16.04 LTS)
add a comment |
The simplest way is to add NextGIS Dev PPA
sudo add-apt-repository ppa:nextgis/dev
sudo apt-get update
and install packages from it.
sudo apt-get install libgdal-dev
And then in R
we can successfully install sf
with
install.packages("sf")
As per its readme,sf
suggests to install from ubuntugis-unstable (github.com/r-spatial/sf#ubuntu) The nextgis/dev ppa was proven to give problems, and is also probably currently empty. (See github.com/r-spatial/sf/issues/929, as well as the issues linked in @BanAnanas answer).
– lbusett
Dec 22 '18 at 15:48
add a comment |
protected by N0rbert Dec 19 '18 at 21:01
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try adding ubuntugis-unstable
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable
sudo apt-get update
and install packages from it.
sudo apt-get install libgdal-dev
As ppa:nextgis/dev
caused me a some trouble when installing sp package
here and seem to also cause there
(DISCLAMER: I'm not running pure Ubuntu, but Linux Mint which is based on Ubuntu 16.04 LTS)
add a comment |
Try adding ubuntugis-unstable
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable
sudo apt-get update
and install packages from it.
sudo apt-get install libgdal-dev
As ppa:nextgis/dev
caused me a some trouble when installing sp package
here and seem to also cause there
(DISCLAMER: I'm not running pure Ubuntu, but Linux Mint which is based on Ubuntu 16.04 LTS)
add a comment |
Try adding ubuntugis-unstable
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable
sudo apt-get update
and install packages from it.
sudo apt-get install libgdal-dev
As ppa:nextgis/dev
caused me a some trouble when installing sp package
here and seem to also cause there
(DISCLAMER: I'm not running pure Ubuntu, but Linux Mint which is based on Ubuntu 16.04 LTS)
Try adding ubuntugis-unstable
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable
sudo apt-get update
and install packages from it.
sudo apt-get install libgdal-dev
As ppa:nextgis/dev
caused me a some trouble when installing sp package
here and seem to also cause there
(DISCLAMER: I'm not running pure Ubuntu, but Linux Mint which is based on Ubuntu 16.04 LTS)
edited Dec 19 '18 at 22:13
answered Dec 19 '18 at 20:28
BanAnanasBanAnanas
146
146
add a comment |
add a comment |
The simplest way is to add NextGIS Dev PPA
sudo add-apt-repository ppa:nextgis/dev
sudo apt-get update
and install packages from it.
sudo apt-get install libgdal-dev
And then in R
we can successfully install sf
with
install.packages("sf")
As per its readme,sf
suggests to install from ubuntugis-unstable (github.com/r-spatial/sf#ubuntu) The nextgis/dev ppa was proven to give problems, and is also probably currently empty. (See github.com/r-spatial/sf/issues/929, as well as the issues linked in @BanAnanas answer).
– lbusett
Dec 22 '18 at 15:48
add a comment |
The simplest way is to add NextGIS Dev PPA
sudo add-apt-repository ppa:nextgis/dev
sudo apt-get update
and install packages from it.
sudo apt-get install libgdal-dev
And then in R
we can successfully install sf
with
install.packages("sf")
As per its readme,sf
suggests to install from ubuntugis-unstable (github.com/r-spatial/sf#ubuntu) The nextgis/dev ppa was proven to give problems, and is also probably currently empty. (See github.com/r-spatial/sf/issues/929, as well as the issues linked in @BanAnanas answer).
– lbusett
Dec 22 '18 at 15:48
add a comment |
The simplest way is to add NextGIS Dev PPA
sudo add-apt-repository ppa:nextgis/dev
sudo apt-get update
and install packages from it.
sudo apt-get install libgdal-dev
And then in R
we can successfully install sf
with
install.packages("sf")
The simplest way is to add NextGIS Dev PPA
sudo add-apt-repository ppa:nextgis/dev
sudo apt-get update
and install packages from it.
sudo apt-get install libgdal-dev
And then in R
we can successfully install sf
with
install.packages("sf")
answered Aug 23 '18 at 16:17
N0rbertN0rbert
21.6k547101
21.6k547101
As per its readme,sf
suggests to install from ubuntugis-unstable (github.com/r-spatial/sf#ubuntu) The nextgis/dev ppa was proven to give problems, and is also probably currently empty. (See github.com/r-spatial/sf/issues/929, as well as the issues linked in @BanAnanas answer).
– lbusett
Dec 22 '18 at 15:48
add a comment |
As per its readme,sf
suggests to install from ubuntugis-unstable (github.com/r-spatial/sf#ubuntu) The nextgis/dev ppa was proven to give problems, and is also probably currently empty. (See github.com/r-spatial/sf/issues/929, as well as the issues linked in @BanAnanas answer).
– lbusett
Dec 22 '18 at 15:48
As per its readme,
sf
suggests to install from ubuntugis-unstable (github.com/r-spatial/sf#ubuntu) The nextgis/dev ppa was proven to give problems, and is also probably currently empty. (See github.com/r-spatial/sf/issues/929, as well as the issues linked in @BanAnanas answer).– lbusett
Dec 22 '18 at 15:48
As per its readme,
sf
suggests to install from ubuntugis-unstable (github.com/r-spatial/sf#ubuntu) The nextgis/dev ppa was proven to give problems, and is also probably currently empty. (See github.com/r-spatial/sf/issues/929, as well as the issues linked in @BanAnanas answer).– lbusett
Dec 22 '18 at 15:48
add a comment |
protected by N0rbert Dec 19 '18 at 21:01
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?