Blame INSTALL

Packit 485bc7
This is the Perl distribution Exception-Class.
Packit 485bc7
Packit 485bc7
Installing Exception-Class is straightforward.
Packit 485bc7
Packit 485bc7
## Installation with cpanm
Packit 485bc7
Packit 485bc7
If you have cpanm, you only need one line:
Packit 485bc7
Packit 485bc7
    % cpanm Exception::Class
Packit 485bc7
Packit 485bc7
If it does not have permission to install modules to the current perl, cpanm
Packit 485bc7
will automatically set up and install to a local::lib in your home directory.
Packit 485bc7
See the local::lib documentation (https://metacpan.org/pod/local::lib) for
Packit 485bc7
details on enabling it in your environment.
Packit 485bc7
Packit 485bc7
## Installing with the CPAN shell
Packit 485bc7
Packit 485bc7
Alternatively, if your CPAN shell is set up, you should just be able to do:
Packit 485bc7
Packit 485bc7
    % cpan Exception::Class
Packit 485bc7
Packit 485bc7
## Manual installation
Packit 485bc7
Packit 485bc7
As a last resort, you can manually install it. Download the tarball, untar it,
Packit 485bc7
then build it:
Packit 485bc7
Packit 485bc7
    % perl Makefile.PL
Packit 485bc7
    % make && make test
Packit 485bc7
Packit 485bc7
Then install it:
Packit 485bc7
Packit 485bc7
    % make install
Packit 485bc7
Packit 485bc7
If your perl is system-managed, you can create a local::lib in your home
Packit 485bc7
directory to install modules to. For details, see the local::lib documentation:
Packit 485bc7
https://metacpan.org/pod/local::lib
Packit 485bc7
Packit 485bc7
## Documentation
Packit 485bc7
Packit 485bc7
Exception-Class documentation is available as POD.
Packit 485bc7
You can run perldoc from a shell to read the documentation:
Packit 485bc7
Packit 485bc7
    % perldoc Exception::Class