Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2031900
  • 博文数量: 413
  • 博客积分: 10926
  • 博客等级: 上将
  • 技术积分: 3862
  • 用 户 组: 普通用户
  • 注册时间: 2006-01-09 18:14
文章分类

全部博文(413)

文章存档

2015年(5)

2014年(1)

2013年(5)

2012年(6)

2011年(138)

2010年(85)

2009年(42)

2008年(46)

2007年(26)

2006年(59)

分类: WINDOWS

2007-07-18 17:09:14

Beefy Boxes and Bandwidth Generously Provided by pair Networks vroom
Welcome to the Monastery
 

A guide to installing modules for Win32

by
 |  |  |  |  | 
 |  |  | PerlMonks Discussion |  | 
 |  |  |  |  |  |  | 
 |  |  |  |  |  |  | 

on Feb 26, 2005 at 20:15 UTC ( #=perltutorial:  ,  )

This article is meant as an extension to 's well written . But this one focuses on the peculiarites of installation on Windows machines.











Installing modules directly from is easy, as long as the module contains no XS-extensions (C-code). Most Windows installations don't have a C-compiler, and even if there is one, the compilation of the XS-extensions is a tricky thingy, that can easily fail. So what can you do if you can't compile? The answer is: use a precompiled version.

The probably most popular port of Perl for Win32 is from . It ships with a tool named ppm, aka the Programmer's Package Manager. ppm is a tool for installing modules, similar to the CPAN-shell. With it you can download and install modules, with or without XS-Extensions, with a few keystrokes.

The following describes the ppm Version that comes with Perl 5.8.0 and above. It differs slightly from the pppm that came with Perl 5.6

Sidenote:
Perl modules built for Perl 5.8 are not binary compatible with modules build for Perl 5.6! That means they are not interchangeable.

Advantages and features of ppm

  • No need for a C/C++ compiler and 'make' utility
  • Automatic installation and deinstallation of modules
  • Automatic resolution of module dependencies
  • Automatic integration of module documentation into the html-documentation that comes with ActivePerl.
  • Maintainance of a database of installed modules and module versions.
  • An easy-to-use shell

As always, there are some tripwires and things you should know.

Disadvantages

  • Core modules are not part of ppm's database
  • Less security. You cannot tell if the supplier added evil code to the XS-part of a module.

To invoke ppm, simply type ppm at the Windows console ("DOS") command line. The result will look similar to this:

C:\>ppm
PPM - Programmer's Package Manager version 3.1.
Copyright (c) 2001 ActiveState Corp. All Rights Reserved.
ActiveState is a devision of Sophos.

Entering interactive shell. Using Term::ReadLine::Stub as readline lib
+rary.

Type 'help' to get started.

ppm>

To get immediate help in the ppm-shell, type help or help .

In order to install a module you have basically two possibilities.

  • Specify a module to install directly
  • Search for a module and choose a one from the results shown

Direct install

To install a module (here: Death::Star) directly, simply type

ppm> install Death::Star

There is a drawback to using this method. If ppm finds more than one version of a module, you cannot choose which one gets installed. Naturally the most recent version gets installed, but there may be a case when you need to install another version. E.g. the most recent version can be buggy, or incompatible with another module you use.

You don't neccessarily need to use the ppm-shell to install a module. You can also use the following command to install a module directly from the command line.

C:\> ppm install Death::Star

Search-and-Install

To search for a module you use the search -command. The parameter for search is a case insensitive regex, thus if you don't know the module's full name, you can also search for pieces of it and you will get a list to choose from.

ppm> search Death::Star
Searching in Active Repositories
1. Death::Star [1.0] a module to kill planets
2. Death::Star [2.0] kill planets with more firepower
ppm>

You can find out more about a module by using the desc -command.

ppm> desc 2
====================
Package 2:
Name: Death::Star
Version: 2.0
Author: Darth Vader (anakin@the-empire.com)
Title: The Deathstar
Abstract: a planet killing module
Location: ActiveState PPM2 Repository
Available Platforms:
1. MSWin32-x86-multi-thread-5.8
====================

To install a module from the list, type install, followed by the module's number.

ppm> install 2

Regardless which method you choose, ppm will start to install the module and produce output like this:

Package 2:
====================
Install 'Death::Star' version 2.0 in ActivePerl 5.8.6.811.
====================
Downloaded 4657 bytes.
Installing C:\Perl\html\site\lib\Death\Star.html
Installing C:\Perl\site\lib\Death\Star.pm
Successfully installed Death::Star version 2.0 in ActivePerl 5.8.6.811
+.

ppm>

If the module has dependencies (that is, it requires another module to work correctly) the dependencies are installed first.

From above, you may have noticed the term Active Repositories. ppm downloads the modules from special websites that are called repositories. A repository is a just a directory or a script that serves a list of ppd files to ppm. From these ppd files, ppm gets the actual location of the module's tarball. A freshly installed ActivePerl will come with two repositories. To find out about them, type rep.

ppm> rep
Repositories:
[ 1] ActiveState PPM2 Repository
[ 2] ActiveState Package Repository
ppm>

In order to find out, which url a repository points to, you can use the rep desc -command.

ppm> rep desc 1
Describing Active Repository 1:
Name: ActiveState PPM2 Repository
Location:

+MServer
Type: PPMServer 2.0
ppm>

A lot of modules are not available from the standard repositories. Thank crunchy, the community provides a lot of alternative repositories that offer the missing modules. For example our fellow brother hosts a repository at .

If you want to add such a repository to ppm you will have to use the rep add -command.

ppm> rep add jenda 
Repositories:
[ 1] ActiveState PPM2 Repository
[ 2] ActiveState Package Repository
[ 3] jenda
ppm>

From there on, the repository is known to ppm and will be used for future searches.

You don't need to permanently add a repository to install a module from it. You can specify the repository from the command line.

C:\> ppm install 

So how, you might ask, do I find out where these repositories are? The answer to this question is PPM::Repositories.pm. That's a module that basically consists of a list of all known repositories. The, at the time of this writing, most recent version (0.9) is available at bribe's repository at

With the following script, you can use PPM::Repositories.pm to add all known repositories to your ppm.
use PPM::Repositories;

for ( keys %Repositories )
{
print `ppm repository add $_ $Repositories{$_}->{location}`;
}

You should be aware that the more repositories you add, the longer it takes for a search to finish.

If you are behind a proxy, you will notice that ppm cannot connect to the internet. To make it work, you will have to set a bunch of environment-variables, where xxx.xxx.xxx.x is the ip-address of the proxy, and y the port:

c:\> set http_proxy=
c:\> set http_proxy_user=username
c:\> set http_proxy_pass=password

Instead of entering the variables each time you before you start ppm, you have other possibilities to set them:

  • Click Start->Settings->Control Panel->System. Select the Expanded Tab, Click Environment. Click New, enter the appropriate values and click Ok.
  • Edit /perl/bin/ppm.bat and insert above lines right after @echo off

Still there may be some environments where that fails. But don't worry, there is an alternative, namely creating a local repository.

The first step doing so is to create a directory on your system that serves as the repository. Name and position of that directory is not important, I use /perl/ppm/repository as an example.

Then add that directory to your ppm using the command described in

ppm> rep add myRepository /perl/ppm/repository
The next step is to download the ppd file of the module and save it to your repository. A ppd file is a xml file that contains information about the module's position, version, etc. It looks like

The Deathstar
a planet killing module
Darth Vader (anakin@the-empire.com)






Identify the line that says . It informs you about the relative position of the module's tar.gz-file, aka tarball. Now download that tarball and save it into the same relative postion. In this example that would be /perl/ppm/repository/x86/Death-Star-2.0.tar.gz.

Now you can use ppm to install the module from your local repository.

You also have the choice to install the module manually. To do so, simply download the tarball and extract it with WinZip or a similar program.

A typical ppm-distribution looks like this:

C:/blib/
+---arch/
¦ +---auto/
¦ +---Death/
¦ +---Star/
¦ #Star.dll
+---html/
¦ +---site/
¦ +---lib/
¦ +--Death/
¦ #Star.html
+---lib/
+---Death/
#Star.pm

Now you can copy the files manually into your Perl's library tree, namely

C:\> copy \blib\lib\Death\Star.pm \Perl\site\lib\Death\Star.pm
C:\> copy \blib\arch\auto\Death\Star\Star.dll \Perl\site\lib\auto\Deat
+h\Star\Star.pm
C:\> copy \blib\html\site\lib\Death\Star.html \Perl\html\site\lib\Deat
+h\Star.html

Be aware that the module's html-documentation will not be integrated into the ActiveState-docs automatically. But if you do a complete rebuild of the HTML documentation, it will be added:

perl -MActivePerl::DocTools -e "UpdateHTML(1)"







I hope this article can make its way into the section. I hereby invite every monk to improve this document.

Update: Corrected error concerning "Getting around the proxy"
Update: Included 's in the text, as suggested by .


holli, /regexed monk/

A guide to installing modules for Win32
or Code

by on Feb 26, 2005 at 20:32 UTC
    Well done! ++

by on Feb 28, 2005 at 02:06 UTC
    Excellent! holli++

by on Mar 02, 2005 at 08:55 UTC
    You could also mention about and how to Install using Nmake

    by on Mar 02, 2005 at 09:09 UTC
      That is covered in .


      holli, /regexed monk/

      by on Sep 14, 2006 at 07:47 UTC
        Yes, but this purports to cover installing on Win32; how to get nmake and install a non-XS module from CPAN is a part of that. Though perhaps it would be sufficient to change:
        Installing modules directly from CPAN is easy, as long as the module contains no XS-extensions (C-code).
        to
        [id://435732|Installing modules directly from CPAN] is easy, as long as the module contains no XS-extensions (C-code).

by on May 06, 2005 at 14:35 UTC

    Be aware that the module's html-documentation will not be integrated into the ActiveState-docs.

    Not automatically, but if you do a complete rebuild of the HTML documentation, it will be added.

    perl -MActivePerl::DocTools -e "UpdateHTML(1)"

    Works quite nicely for manual installations.



    by on May 09, 2005 at 20:31 UTC
      Slight change of topic, but I believe related. Installing ppm modules doesn't install the test files either. Is there a way like above with updatehtml to install tests?

      by on Jul 08, 2005 at 07:46 UTC
        Test files aren't installed, because they are not part of the ppm-package. You cannot install what isn't there ;-)


        holli, /regexed monk/

    by on Jul 08, 2005 at 07:44 UTC
      Very nice tip! ++ It was very handy for me today.


      holli, /regexed monk/

by on May 09, 2005 at 13:47 UTC
    Thanks Holli, this was excellent.

    Jenda's repository appears to be down at the moment. This caused ppm to "sit and wait" for an awfully long time, with no feedback for several minutes, until it finally failed for me.

    So, obvious point, but you might want to mention that it's worth checking a repository with your web browser, or pinging it, before adding it, since ppm is so slow for this.

    UPDATE: So, I wrote a


by on Jul 08, 2005 at 04:39 UTC

    Great tutorial, thanks. One small suggestion (because it took me a little while to work it out...) in the section "Creating a local repository" where you talk about downloading the ppd file and tarball it would probably help to mention that these files are downloaded from an existing repository. On that matter, is there a list of repositories available?

    --

    Do not seek to follow in the footsteps of the wise. Seek what they sought. -Basho


    by on Jul 08, 2005 at 07:41 UTC
      The only list I know of is in Repositories.pm as mentioned


      holli, /regexed monk/

by on Aug 16, 2005 at 09:58 UTC
    Followup at

by on Jun 07, 2006 at 18:41 UTC
    I just wanted to mention that in general, it's better to specify the distribution name rather than the module name when using ppm install or ppm search. When you just specify the module name, ppm has to search for and guess which distribution the module is in. Once in a great while it gets it wrong or doesn't find the module. For modules with the same name as their distribution, this just involves s/::/-/g on the module name in the ppm install command.



    by on Jun 07, 2006 at 23:09 UTC
      I find that in many cases ppm can't find the module at all, and I have to go find the distribution name manually, guess (s/::/-/g), or give a too-general wildcard.

      So unless someone gives me a distribution name, I expect a headache.

      -QM
      --
      Quantum Mechanics: The dreams stuff is made of



by on Nov 23, 2006 at 09:06 UTC
    Hi Holli, Good tutorial. It really help me a lot.

by culix on Jun 22, 2007 at 19:53 UTC
    Hi Holli,

    I'd like to share one other PPM quirk, as it took me a few hours to figure out. If the .tar.gz filename does not include the version number, PPM will not actually install the file when downloading from a local repository. I created a local repository on a network drive and copied over "Foo-Bar.ppd" and "Foo-Bar.tar.gz". When I told PPM to install the module it claimed success, but wouldn't actually copy the files to the local machine. Once I renamed the files to "Foo-Bar-0.1.ppd" and "Foo-Bar-0.1.tar.gz" they were installed correctly.

    Sorry if this is a rookie mistake, but I didn't see it mentioned here so I thought I would post.

    Thanks for writing the article, it was helpful.

Back to

Login:
Password
remember me


Node Status

Node Type: perltutorial [id://434813]
Chatterbox

[]: when you talk about facing a problem, are you talking about ?
[]: : more like my own insecurities about penis size, my mother beating me, wearing women's clothing, etc.

|
Other Users
Others wandering the Monastery: (20)




















As of 2007-07-18 08:46 GMT
Sections



PerlMonks Discussion







Information








Find Nodes








Leftovers










Perl documentation


Voting Booth

The best Doctor:

William Hartnell
Patrick Troughton
Jon Pertwee
Tom Baker
Peter Davidson
Colin Baker
Sylvester McCoy
Paul McGann
Christopher Eccleston
David Tennant
Doctor Who?

,



阅读(2738) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~