Sponsored Content
Full Discussion: perl module install issue
Operating Systems Solaris perl module install issue Post 302600858 by itkamaraj on Wednesday 22nd of February 2012 09:14:58 AM
Old 02-22-2012
install the Build module first, then try to install the DateTime-0.72

Code:
perl -MCPAN -e 'install Module::Build';

---------- Post updated at 07:44 PM ---------- Previous update was at 07:41 PM ----------

you can check the dependency modules in the cpan website itself

CPAN dependencies and test results checker: DateTime
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

PERL DBI module install

We ran into an issue trying to install DBI and DB2 modules for perl for AIX from the link http://www-306.ibm.com/software/data/db2/perl/ We tried to install the DBI module using bash# perl -MCPAN -e 'install DBI' command. However we ended up with the following error. Stop. ... (3 Replies)
Discussion started by: jerardfjay
3 Replies

2. Solaris

Install Perl Module

Hi Every one, I am suing solaris 5.10. i want install perl modules, how insall cn any body help me to install perl Module.. Thank you for your Help Thanks, Hari.A. (1 Reply)
Discussion started by: hari.jnvc90
1 Replies

3. Shell Programming and Scripting

[Perl] How to install with CPAN specified version of module

Hello all, i am searching how to install a module but the question is : howto specify CPAN to install a determined version of the module ? In my case i want to install DBD:Oracle1.14 and not version 1.23 proposed ! Any idea welcome ! :rolleyes: Thanks ! (1 Reply)
Discussion started by: sun_cracker
1 Replies

4. OS X (Apple)

Unable to install Perl module via CPAN

Hi, I am trying to install Unicode::String from the cpan shell, and here is what I get: Checking if your kit is complete... Looks good Writing Makefile for Unicode::String cp String.pm blib/lib/Unicode/String.pm cp lib/Unicode/CharName.pm blib/lib/Unicode/CharName.pm... (3 Replies)
Discussion started by: psychomachine
3 Replies

5. Shell Programming and Scripting

calling perl subroutine from perl expect module

All, Is it possible to call a subroutine from the perl expect module after logging to a system that is within the same program. My situation is I need to run a logic inside a machine that I'm logging in using the expect module, the logic is also available in the same expect program. Thanks,... (5 Replies)
Discussion started by: arun_maffy
5 Replies

6. Solaris

Trying to install perl module

Here's the deal: I'm trying to install perl's DBI Module in my Solaris 11 express ( ALSO TRYING IN SOLARIS 10 ) but I'm getting these errors/warnings when using the respective commands perl Makefile.PL Warning: prerequisite ExtUtils::MakeMaker 6.48 not found. We have 6.42. Warning:... (3 Replies)
Discussion started by: alvaradogunner
3 Replies

7. Shell Programming and Scripting

Can't locate inc/Module/Install.pm in @INC

Hi, I'm trying to install "Date-FromToday" module on my solaris box as below. #perl Makefile.pl (i got the below error) Can't locate inc/Module/Install.pm in @INC (@INC contains: /usr/perl5/5.8.4/lib/sun4-solaris-64int /usr/perl5/5.8.4/lib /usr/perl5/site_perl/5.8.4/sun4-solaris-64int... (3 Replies)
Discussion started by: admin@2010
3 Replies

8. Shell Programming and Scripting

Unable to Install "Devel-Profile" perl module in windows.

Hi, I want to install 'Devel-Profile' in windows but i am not able to install. Here is the error. PPM> install Devel-Profile Install package 'Devel-Profile?' (y/N): y Installing package 'Devel-Profile'... Error installing package 'Devel-Profile': Could not locate a PPD file for... (3 Replies)
Discussion started by: vanitham
3 Replies

9. Shell Programming and Scripting

Unable to install module using cpan

Hi, I am unable to install module using cpan. It says 407 Proxy Authentication Required I did setup proxy server and given username and password in .bashrc file and apt.conf file. export http_proxy=http://username:password@proxyserver:portno/ However, still unable to install... (1 Reply)
Discussion started by: Anjan1
1 Replies

10. Shell Programming and Scripting

Perl Module Installation issue.

I have issue with the perl module installed in the new Linux server I have installed the required module, but still the perl program was not able to find the path I'm getting the below error: Can't locate Log/Log4perl.pm in @INC (@INC contains: /usr/lib/perl5/site_perl/Log4perl.pm... (5 Replies)
Discussion started by: help_scr_seeker
5 Replies
CPANPLUS::Dist::Build(3)				User Contributed Perl Documentation				  CPANPLUS::Dist::Build(3)

NAME
CPANPLUS::Dist::Build - CPANPLUS plugin to install packages that use Build.PL SYNOPSIS
my $build = CPANPLUS::Dist->new( format => 'CPANPLUS::Dist::Build', module => $modobj, ); $build->prepare; # runs Build.PL $build->create; # runs build && build test $build->install; # runs build install DESCRIPTION
"CPANPLUS::Dist::Build" is a distribution class for "Module::Build" related modules. Using this package, you can create, install and uninstall perl modules. It inherits from "CPANPLUS::Dist". Normal users won't have to worry about the interface to this module, as it functions transparently as a plug-in to "CPANPLUS" and will just "Do The Right Thing" when it's loaded. ACCESSORS
"parent()" Returns the "CPANPLUS::Module" object that parented this object. "status()" Returns the "Object::Accessor" object that keeps the status for this module. STATUS ACCESSORS
All accessors can be accessed as follows: $build->status->ACCESSOR "build_pl ()" Location of the Build file. Set to 0 explicitly if something went wrong. "build ()" BOOL indicating if the "Build" command was successful. "test ()" BOOL indicating if the "Build test" command was successful. "prepared ()" BOOL indicating if the "prepare" call exited successfully This gets set after "perl Build.PL" "distdir ()" Full path to the directory in which the "prepare" call took place, set after a call to "prepare". "created ()" BOOL indicating if the "create" call exited successfully. This gets set after "Build" and "Build test". "installed ()" BOOL indicating if the module was installed. This gets set after "Build install" exits successfully. uninstalled () BOOL indicating if the module was uninstalled properly. "_create_args ()" Storage of the arguments passed to "create" for this object. Used for recursive calls when satisfying prerequisites. "_install_args ()" Storage of the arguments passed to "install" for this object. Used for recursive calls when satisfying prerequisites. METHODS
$bool = CPANPLUS::Dist::Build->format_available(); Returns a boolean indicating whether or not you can use this package to create and install modules in your environment. $bool = $dist->init(); Sets up the "CPANPLUS::Dist::Build" object for use. Effectively creates all the needed status accessors. Called automatically whenever you create a new "CPANPLUS::Dist" object. $bool = $dist->prepare([perl => '/path/to/perl', buildflags => 'EXTRA=FLAGS', force => BOOL, verbose => BOOL]) "prepare" prepares a distribution, running "Build.PL" and establishing any prerequisites this distribution has. The variable "PERL5_CPANPLUS_IS_EXECUTING" will be set to the full path of the "Build.PL" that is being executed. This enables any code inside the "Build.PL" to know that it is being installed via CPANPLUS. After a successful "prepare" you may call "create" to create the distribution, followed by "install" to actually install it. Returns true on success and false on failure. $dist->create([perl => '/path/to/perl', buildflags => 'EXTRA=FLAGS', prereq_target => TARGET, force => BOOL, verbose => BOOL, skiptest => BOOL]) "create" preps a distribution for installation. This means it will run "Build" and "Build test". This will also satisfy any prerequisites the module may have. If you set "skiptest" to true, it will skip the "Build test" stage. If you set "force" to true, it will go over all the stages of the "Build" process again, ignoring any previously cached results. It will also ignore a bad return value from "Build test" and still allow the operation to return true. Returns true on success and false on failure. You may then call "$dist->install" on the object to actually install it. $dist->install([verbose => BOOL, perl => /path/to/perl]) Actually installs the created dist. Returns true on success and false on failure. AUTHOR
Originally by Jos Boumans <kane@cpan.org>. Brought to working condition by Ken Williams <kwilliams@cpan.org>. Other hackery and currently maintained by Chris "BinGOs" Williams ( no relation ). <bingos@cpan.org>. LICENSE
The CPAN++ interface (of which this module is a part of) is copyright (c) 2001, 2002, 2003, 2004, 2005 Jos Boumans <kane@cpan.org>. All rights reserved. This library is free software; you may redistribute and/or modify it under the same terms as Perl itself. perl v5.16.3 2013-01-25 CPANPLUS::Dist::Build(3)
All times are GMT -4. The time now is 06:59 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy