Difference between revisions of "Perl"

From UFRC
Jump to navigation Jump to search
m (Text replace - "==Running the application using modules==" to "==Execution Environment and Modules==")
 
(22 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 
__NOEDITSECTION__
 
__NOEDITSECTION__
[[Category:Software]][[Category:Languages]]
+
[[Category:Software]][[Category:Language]][[Category:Programming]]
<!-- ########  Template Configuration ######## -->
+
{|<!--Main settings - REQUIRED-->
<!--Edit definitions of the variables used in template calls
 
Required variables:
 
app - lowercase name of the application e.g. "amber"
 
url - url of the software page (project, company product, etc) - e.g. "http://ambermd.org/"
 
Optional variables:
 
INTEL - Version of the Intel Compiler e.g. "11.1"
 
MPI - MPI Implementation and version e.g. "openmpi/1.3.4"
 
-->
 
{|
 
<!--Main settings - REQUIRED-->
 
 
|{{#vardefine:app|perl}}
 
|{{#vardefine:app|perl}}
 
|{{#vardefine:url|http://www.perl.org/}}
 
|{{#vardefine:url|http://www.perl.org/}}
<!--Compiler and MPI settings - OPTIONAL -->
+
|{{#vardefine:exe|1}} <!--Present manual instructions for running the software -->
|{{#vardefine:intel|}} <!-- E.g. "11.1" -->
 
|{{#vardefine:mpi|}} <!-- E.g. "openmpi/1.3.4" -->
 
<!--Choose sections to enable - OPTIONAL-->
 
|{{#vardefine:mod|1}} <!--Present instructions for running the software with modules -->
 
|{{#vardefine:exe|}} <!--Present manual instructions for running the software -->
 
 
|{{#vardefine:conf|}} <!--Enable config wiki page link - {{#vardefine:conf|1}} = ON/conf|}} = OFF-->
 
|{{#vardefine:conf|}} <!--Enable config wiki page link - {{#vardefine:conf|1}} = ON/conf|}} = OFF-->
 
|{{#vardefine:pbs|}} <!--Enable PBS script wiki page link-->
 
|{{#vardefine:pbs|}} <!--Enable PBS script wiki page link-->
Line 34: Line 19:
  
 
Perl 5 is a highly capable, feature-rich programming language with over 23 years of development.
 
Perl 5 is a highly capable, feature-rich programming language with over 23 years of development.
 +
<!--Modules-->
 +
==Environment Modules==
 +
Run <code>module spider {{#var:app}}</code> to find out what environment modules are available for this application.
 +
==System Variables==
 +
* HPC_{{uc:{{#var:app}}}}_DIR - installation directory
 +
* PERL5LIB - perl module path
 +
<!--Additional-->
 +
{{#if: {{#var: exe}}|==Additional Information==
  
==Available versions==
+
Though modern-day Linux and Unix systems may have many perl modules already installed, the time may come when you use a module that was not shipped with your system or installed by your administrator. Don't fret - you can do this all by yourself by using the CPAN module. This document will describe how to use the CPAN module to install perl modules into a subdirectory of your home area which we'll call <code>perl5lib</code>.
* 5.14.1
 
  
==Installed modules==
+
'''Note: If you are using the ''perl'' module by running ''module load perl'' you can request installation of additional modules by filing a [http://support.rc.ufl.edu support request].'''
=== 5.14.1 ===
+
 
* BioPerl - 1.006901
+
===CPAN Module Configuration===
* GD::Graph  - 1.44
+
 
* GD::Graph::histogram - 1.1
+
#Execute the following command to start a CPAN shell:
* Statistics::TTest - 1.1
+
#*<pre>$ perl -MCPAN -e shell</pre>
* Statistics::PointEstimation - 1.1
+
#The first time you run this, an interactive question and answer session will be started as CPAN configures itself. You can take all the defaults until it asks whether you want any parameters for perl Makefile.PL:
<!-- -->
+
#*<pre>Every Makefile.PL is run by perl in a separate process.</pre>
{{#if: {{#var: mod}}|==Execution Environment and Modules==
+
#*<pre>...</pre>
{{App_Module|app={{#var:app}}|intel={{#var:intel}}|mpi={{#var:mpi}}}}|}}
+
#*<pre>Your choice: []</pre>
{{#if: {{#var: exe}}|==How To Run==
+
#You should answer with the following long line:
WRITE INSTRUCTIONS ON RUNNING THE ACTUAL BINARY|}}
+
#*<pre>PREFIX=~/perl5lib/ LIB=~/perl5lib/lib INSTALLMAN1DIR=~/perl5lib/man1 INSTALLMAN3DIR=~/perl5lib/man3</pre>
 +
#You can take defaults again until it comes time to choose mirrors of www.cpan.org from which you can install from. Choose as many as you like; I chose:  
 +
#*<pre>ftp://mirrors.kernel.org/pub/CPAN/</pre>
 +
#*<pre>http://www.perl.com/CPAN/</pre>
 +
#After choosing your mirrors, press enter until you get the <code>cpan></code> prompt. Then quit (type '<code>q</code>').
 +
#Now tell perl to use your personal module repository by setting the <code>PERL5LIB</code> environment variable. For Bourne shell users, you would do this:
 +
#*<pre>$ PERL5LIB=~/perl5lib/lib</pre>
 +
#*<pre>$ export PERL5LIB</pre>
 +
#You should also add the above two lines to your <code>~/.bash_profile</code> so the <code>PERL5LIB</code> variable will be automatically set when you next log in. 
 +
#Then start up CPAN again:
 +
#*<pre>$ perl -MCPAN -e shell</pre>
 +
#You will be immediately greeted with the <code>cpan></code> prompt. At the <code>cpan></code> prompt, enter the following to get CPAN to update itself:
 +
#*<pre>install Bundle::CPAN</pre>
 +
#*<pre>reload cpan</pre>
 +
and that's it!  
 +
 
 +
===Installing Additional Modules===
 +
 
 +
Now that you have CPAN configured, you can install all the modules you want either from CPAN's interactive shell (<code>perl -MCPAN -e shell</code>) or from the command line (<code>perl -MCPAN -e 'install FOO::BAR'</code>).  The modules will be installed into your <code>~/perl5lib/lib</code> directory.
 +
<div class="mw-collapsible mw-collapsed" style="width:70%; padding: 5px; border: 1px solid gray;">
 +
''Expand this section to view example of module installation.''
 +
<div class="mw-collapsible-content" style="padding: 5px;">
 +
As a full example, we'll install the <code>File::Slurp</code> module into the username <code>user</code>'s <code>~/perl5lib</code> directory.
 +
 
 +
<pre>
 +
[user@submit2 ~]$ perl -MCPAN -e shell
 +
 
 +
cpan shell -- CPAN exploration and modules installation (v1.7602)
 +
ReadLine support enabled
 +
 
 +
cpan> install File::Slurp
 +
CPAN: Storable loaded ok
 +
...
 +
...
 +
...
 +
  /usr/bin/make install -j2 -- OK
 +
cpan>
 +
</pre>
 +
 
 +
With installation finished, we can test it interactively:
 +
 
 +
<pre>
 +
[user@submit2 ~]$ perl -e 'use File::Slurp;'
 +
</pre>
 +
 
 +
If all went well, the above command will return with no errors.
 +
</div></div>|}}
 
{{#if: {{#var: conf}}|==Configuration==
 
{{#if: {{#var: conf}}|==Configuration==
 
See the [[{{PAGENAME}}_Configuration]] page for {{#var: app}} configuration details.|}}
 
See the [[{{PAGENAME}}_Configuration]] page for {{#var: app}} configuration details.|}}
 
{{#if: {{#var: pbs}}|==PBS Script Examples==
 
{{#if: {{#var: pbs}}|==PBS Script Examples==
 
See the [[{{PAGENAME}}_PBS]] page for {{#var: app}} PBS script examples.|}}
 
See the [[{{PAGENAME}}_PBS]] page for {{#var: app}} PBS script examples.|}}
{{#if: {{#var: policy}}|==Usage policy==
+
{{#if: {{#var: policy}}|==Usage Policy==
 
WRITE USAGE POLICY HERE (perhaps templates for a couple of main licensing schemes can be used)|}}
 
WRITE USAGE POLICY HERE (perhaps templates for a couple of main licensing schemes can be used)|}}
 
{{#if: {{#var: testing}}|==Performance==
 
{{#if: {{#var: testing}}|==Performance==

Latest revision as of 17:56, 2 January 2023

Description

perl website  

Perl 5 is a highly capable, feature-rich programming language with over 23 years of development.

Environment Modules

Run module spider perl to find out what environment modules are available for this application.

System Variables

  • HPC_PERL_DIR - installation directory
  • PERL5LIB - perl module path

Additional Information

Though modern-day Linux and Unix systems may have many perl modules already installed, the time may come when you use a module that was not shipped with your system or installed by your administrator. Don't fret - you can do this all by yourself by using the CPAN module. This document will describe how to use the CPAN module to install perl modules into a subdirectory of your home area which we'll call perl5lib.

Note: If you are using the perl module by running module load perl you can request installation of additional modules by filing a support request.

CPAN Module Configuration

  1. Execute the following command to start a CPAN shell:
    • $ perl -MCPAN -e shell
  2. The first time you run this, an interactive question and answer session will be started as CPAN configures itself. You can take all the defaults until it asks whether you want any parameters for perl Makefile.PL:
    • Every Makefile.PL is run by perl in a separate process.
    • ...
    • Your choice:  []
  3. You should answer with the following long line:
    • PREFIX=~/perl5lib/ LIB=~/perl5lib/lib INSTALLMAN1DIR=~/perl5lib/man1 INSTALLMAN3DIR=~/perl5lib/man3
  4. You can take defaults again until it comes time to choose mirrors of www.cpan.org from which you can install from. Choose as many as you like; I chose:
    • ftp://mirrors.kernel.org/pub/CPAN/
    • http://www.perl.com/CPAN/
  5. After choosing your mirrors, press enter until you get the cpan> prompt. Then quit (type 'q').
  6. Now tell perl to use your personal module repository by setting the PERL5LIB environment variable. For Bourne shell users, you would do this:
    • $ PERL5LIB=~/perl5lib/lib
    • $ export PERL5LIB
  7. You should also add the above two lines to your ~/.bash_profile so the PERL5LIB variable will be automatically set when you next log in.
  8. Then start up CPAN again:
    • $ perl -MCPAN -e shell
  9. You will be immediately greeted with the cpan> prompt. At the cpan> prompt, enter the following to get CPAN to update itself:
    • install Bundle::CPAN
    • reload cpan

and that's it!

Installing Additional Modules

Now that you have CPAN configured, you can install all the modules you want either from CPAN's interactive shell (perl -MCPAN -e shell) or from the command line (perl -MCPAN -e 'install FOO::BAR'). The modules will be installed into your ~/perl5lib/lib directory.

Expand this section to view example of module installation.

As a full example, we'll install the File::Slurp module into the username user's ~/perl5lib directory.

[user@submit2 ~]$ perl -MCPAN -e shell

cpan shell -- CPAN exploration and modules installation (v1.7602)
ReadLine support enabled

cpan> install File::Slurp
CPAN: Storable loaded ok
...
...
...
  /usr/bin/make install -j2 -- OK
cpan> 

With installation finished, we can test it interactively:

[user@submit2 ~]$ perl -e 'use File::Slurp;'

If all went well, the above command will return with no errors.