Lines Matching +full:on +full:- +full:module

1 Notes on Perl
4 - [General Notes](#general-notes)
5 - [Perl on Windows](#perl-on-windows)
6 - [Perl on VMS](#perl-on-vms)
7 - [Perl on NonStop](#perl-on-nonstop)
8 - [Required Perl modules](#required-perl-modules)
9 - [Notes on installing a Perl module](#notes-on-installing-a-perl-module])
12 -------------
14 For our scripts, we rely quite a bit on Perl, and increasingly on
16 source, so if you build Perl on your own, you should be set.
23 - on Linux distributions based on Debian, the package `perl` will
25 - on Linux distributions based on RPMs, you will need to install
26 `perl-core` rather than just `perl`.
32 Perl on Windows
33 ---------------
36 Indeed, there are `VC-*` configs targeting VisualStudio C, as well as
39 on Cygwin be sure to use the Cygwin package manager to install Perl.
41 For VC-* builds we recommend Strawberry Perl, from <http://strawberryperl.com>.
43 for which you may need to explicitly select the Perl module Win32/Console.pm
46 Perl on VMS
47 -----------
51 `README-VMS.md` and follow the instructions. Another way is to download a
55 Perl on NonStop
56 ---------------
58 Perl is installed on HPE NonStop platforms as part of the Scripting Languages
67 ---------------------
74 To avoid unnecessary initial hurdles, we include a copy of this module
75 in the source. It will work as a fallback if the module isn't already
82 This module is required for testing only! If you don't plan on running
85 Notes on installing a Perl module
86 ---------------------------------
88 There are a number of ways to install a perl module. In all
93 for the module name and to install the package that comes up.
95 On Debian based Linux distributions, it would go like this:
97 $ apt-cache search Text::Template
99 libtext-template-perl - perl module to process text templates
100 $ sudo apt-get install libtext-template-perl
103 the name of the module in question, with "lib" prepended and
104 "-perl" appended.
109 $ cpan -i Text::Template
111 Note that this runs all the tests that the module to be installed
118 $ cpan -f -i Text::Template
120 Note: on VMS, you must quote any argument that contains upper case
123 $ cpan -i "Text::Template"
127 $ cpan -f -i "Text::Template"