installing-gnunet.rst (822B)
1 Before you install GNUnet, you must download and install the dependencies 2 mentioned in the previous section, otherwise the build may succeed, but could 3 fail to export some of the tooling required by GNU Taler. 4 5 To install GNUnet, unpack the tarball and change 6 into the resulting directory, then proceed as follows: 7 8 .. code-block:: console 9 10 $ ./configure [--prefix=GNUNETPFX] 11 $ # Each dependency can be fetched from non standard locations via 12 $ # the '--with-<LIBNAME>' option. See './configure --help'. 13 $ make 14 # make install 15 # ldconfig 16 17 If you did not specify a prefix, GNUnet will install to ``/usr/local``, 18 which requires you to run the last step as ``root``. 19 The ``ldconfig`` command (also run as ``root``) makes the 20 shared object libraries (``.so`` files) 21 visible to the various installed programs.