Blame INSTALL

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