]> sipb.mit.edu Git - ikiwiki.git/blob - doc/install.mdwn
resp
[ikiwiki.git] / doc / install.mdwn
1 The easiest way to install ikiwiki is using the Debian package, but you can
2 also [[download]] the source and install it by hand. Ikiwiki should work on
3 most unix-like systems.
4
5 Ikiwiki is a perl program, and needs a recent version of perl such as
6 5.8.8. (5.8.0 has been reported not to work).
7
8 Ikiwiki requires the [[cpan Text::Markdown]], [[cpan URI]],
9 [[cpan HTML::Parser]], and [[cpan HTML::Template]] perl modules be
10 installed, and also uses the following perl modules if available: 
11 [[cpan CGI::Session]], [[cpan CGI::FormBuilder]] (version 3.05 or newer),
12 [[cpan Mail::Sendmail]], [[cpan Time::Duration]], [[cpan TimeDate]],
13 [[cpan HTML::Scrubber]], [[cpan RPC::XML]], [[cpan XML::Simple]],
14 [[cpan XML::Feed]], [[cpan File::MimeInfo]], [[cpan Locale::gettext]]
15 (version 1.04 or newer).
16
17 Various [[plugins]] use other libraries and utlities; see their individual
18 documentation for details.
19
20 The Debian packages depend on an appropriate set of these modules.
21
22 While Fedora 7 doesn't have an ikiwiki package, you can install needed
23 perl modules using this command:
24
25         yum install perl-Text-Markdown perl-Mail-Sendmail perl-HTML-Scrubber \
26           perl-XML-Simple perl-TimeDate perl-HTML-Template perl-CGI-FormBuilder \
27           perl-CGI-Session perl-File-MimeInfo perl-gettext
28
29 If you want to install from the tarball, you should make sure that the
30 required perl modules are installed, then run:
31
32         perl Makefile.PL # PREFIX=/dir to install elsewhere
33         make
34         make test # optional
35         make install
36
37 See [[download]] for where to get it.