]> sipb.mit.edu Git - ikiwiki.git/blob - doc/install.mdwn
web commit by http://sabr.myopenid.com/
[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]], [[cpan HTML::Template]], and [[cpan HTML::Scrubber]]
10 perl modules be installed.
11
12 It also uses the following perl modules if available: [[cpan
13 CGI::Session]], [[cpan CGI::FormBuilder]] (version 3.05 or newer), [[cpan
14 Mail::Sendmail]], [[cpan TimeDate]], [[cpan RPC::XML]],
15 [[cpan XML::Simple]], [[cpan XML::Feed]], [[cpan File::MimeInfo]],
16 [[cpan Locale::gettext]] (version 1.04 or newer).
17
18 It's recommended you have a C compiler, as ikiwiki uses one to build
19 wrappers.
20
21 Various [[plugins]] use other libraries and utlities; see their individual
22 documentation for details.
23
24 The Debian packages depend on and recommend an appropriate set of packages.
25
26 While Fedora 7 doesn't have an ikiwiki package, you can install needed
27 perl modules using this command:
28
29         yum install perl-Text-Markdown perl-Mail-Sendmail perl-HTML-Scrubber \
30           perl-XML-Simple perl-TimeDate perl-HTML-Template perl-CGI-FormBuilder \
31           perl-CGI-Session perl-File-MimeInfo perl-gettext
32
33 If you want to install from the tarball, you should make sure that the
34 required perl modules are installed, then run:
35
36         perl Makefile.PL # PREFIX=/dir to install elsewhere
37         make
38         make test # optional
39         make install
40
41 See [[download]] for where to get it.