I'm very new to all things Linux so please bear with me. I'm trying to install the latest release of pgrouting and my steps are as follows:
sudo mkdir pgrouting
cd pgrouting
sudo wget https://github.com/pgRouting/pgrouting/archive/pgrouting-2.1.0.zip
sudo unzip pgrouting-2.1.0.zip
cd pgrouting-pgrouting-2.1.0
sudo mkdir build
cd build
sudo cmake ..
sudo make
sudo make install
So basically I am downloading, unzipping and building it from source. But since there's a GitHub release, is there a way to install it using apt-get without building from source?
mkdir
,wget
,unzip
andmake
commands shouldn't be usingsudo
. Only themake install
command should need it. – muru Feb 25 '16 at 05:07