How could I install Gdal without root
Matthew Martinez
I need to install gdal (or gdal.org), in Linux Ubuntu, but I dont have root privilege. The gdal package is available as ".deb" as well as source files.
Thanks!
1 Answer
Compile the source code
./autogen.sh
./configure
makeAnd don't use make install or
./autogen.sh
./configure --prefix=~/.local
make
make installto install in your home folder.