Skip to content

Latest commit

 

History

History
67 lines (47 loc) · 1.65 KB

INSTALL.md

File metadata and controls

67 lines (47 loc) · 1.65 KB

Installation

You have more than one choice of install, see below.

Debian package

Analizo is readily available as a Debian package. This package migth work with Ubuntu as well. Installing the Debian package has the follwing advantages:

  1. you do not have to compile anything
  2. all dependencies are installed automatically for you
  3. new versions will be automatically available for upgrading the version on your system.

You will find the instructions to install Analizo Debian package below. All of the steps must be performed as =root= user:

  1. Create a file /etc/apt/sources.list.d/analizo.list file with the following contents:
deb http://analizo.org/download/ ./
deb-src http://analizo.org/download/ ./
  1. Add the repository signing key to your list of trusted keys:
wget -O - http://analizo.org/download/signing-key.asc | apt-key add -
  1. Update your package lists:
apt-get update
  1. Install analizo:
apt-get install analizo

From CPAN

Install cpanminus and building dependencies (see "Installing dependencies on non-Debian systems" on HACKING.md) then run cpanm:

cpanm Analizo

From sources

Download the analizo tarball linked from the download page, extract it and run the following commands inside the analizo-x.y.z directory:

perl Makefile.PL
make
sudo make install

See the HACKING.md file for instructions on how to install Analizo dependencies. You neeed to install the dependencies before installing Analizo from sources.