Difference between revisions of "installing Modules"

From OpenKore Wiki
Jump to navigation Jump to search
(Created page with '== What are modules == The '''modules''' are usually complements open source and free, which serve to add commands and functionality to Perl. They are usually released on CPAN - …')
 
Line 16: Line 16:
 
How to install modules using the Strawberry:
 
How to install modules using the Strawberry:
 
# After installing Strawberry, open the CPAN Client (In Windows Vista and later, just search on the start menu by CPAN)
 
# After installing Strawberry, open the CPAN Client (In Windows Vista and later, just search on the start menu by CPAN)
[[Arquivo:cpan1.png|250px]]
+
[[File:cpan1.png|250px]]
 
# In the console, use the following command to install modules:  
 
# In the console, use the following command to install modules:  
 
:install <module name>
 
:install <module name>
  
 
'''''Note:''''' If the module has '''-''' in its name, substitute to '''::'''. For example: '''Protocol-WebSocket''' should be typed '''Protocol::WebSocket'''
 
'''''Note:''''' If the module has '''-''' in its name, substitute to '''::'''. For example: '''Protocol-WebSocket''' should be typed '''Protocol::WebSocket'''

Revision as of 22:02, 6 June 2013

What are modules

The modules are usually complements open source and free, which serve to add commands and functionality to Perl. They are usually released on CPAN - Perl library modules.

Installation

Active Perl

Active Perl offers a program to download and install modules with a user friendly interface, called Perl Packet Manager (PPM), and a different mirror. The service is paid.

How to install modules using the PPM:

  1. Open Perl Package Manager (Start -> Run -> 'ppm')
  2. In the graphical interface that appears, search for the modules using the text field above and select the modules you want to install or upgrade
  3. After mark modules, click the green arrow to start the download and installation

Strawberry

The Strawberry offers a console program to download and install modules directly from the official repository, CPAN. The service is free.

How to install modules using the Strawberry:

  1. After installing Strawberry, open the CPAN Client (In Windows Vista and later, just search on the start menu by CPAN)

250px

  1. In the console, use the following command to install modules:
install <module name>

Note: If the module has - in its name, substitute to ::. For example: Protocol-WebSocket should be typed Protocol::WebSocket