1
2This is the Perl distribution Module-Implementation.
3
4Installing Module-Implementation is straightforward.
5
6## Installation with cpanm
7
8If you have cpanm, you only need one line:
9
10    % cpanm Module::Implementation
11
12If you are installing into a system-wide directory, you may need to pass the
13"-S" flag to cpanm, which uses sudo to install the module:
14
15    % cpanm -S Module::Implementation
16
17## Installing with the CPAN shell
18
19Alternatively, if your CPAN shell is set up, you should just be able to do:
20
21    % cpan Module::Implementation
22
23## Manual installation
24
25As a last resort, you can manually install it. Download the tarball, untar it,
26then build it:
27
28    % perl Makefile.PL
29    % make && make test
30
31Then install it:
32
33    % make install
34
35If you are installing into a system-wide directory, you may need to run:
36
37    % sudo make install
38
39## Documentation
40
41Module-Implementation documentation is available as POD.
42You can run perldoc from a shell to read the documentation:
43
44    % perldoc Module::Implementation
45