Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

How could I install Gdal without root

Writer 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
make

And don't use make install or

./autogen.sh
./configure --prefix=~/.local
make
make install

to install in your home folder.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy