File: INSTALL

package info (click to toggle)
libalgorithm-naivebayes-perl 0.04-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: perl: 253; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 486 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
           Installation instructions for Algorithm::NaiveBayes

To install this module, do this:

  perl Build.PL
  ./Build
  ./Build test
  ./Build install

Alternatively, if you don't want to use the newer Module::Build module,
you can follow the standard steps for installing most Perl modules:

  perl Makefile.PL
  make
  make test
  make install

Or you may use the CPAN.pm module, which will automatically execute
these steps for you.  See 'perldoc CPAN' for the details.

 -Ken