CPAN is the Comprehensive Perl Archive Network, a code and documentation archive of over 100,000 Perl modules across more than 25,000 distributions written by more than 10,000 authors.

learn more… | top users | synonyms

1
vote
0answers
48 views

How to specify destination directory in Makefile.PL

I am using ExtUtils::MakeMaker; to generate makefile. It runs gcc on my cpp files but copies my object files to current directory. How do i specify the destination folder where my .o files will be ...
1
vote
0answers
19 views

ffi library for perl for accessing dlls

I have a dll library for specfic software and need to convert it to perl api . on Python there are a library called ctypes http://docs.python.org/2/library/ctypes.html which is a forign function ...
2
votes
1answer
28 views

How to force the INC and LIB path defaults for CPAN builds (cpanm+perlbrew)

Background Working with OS X and using macports for additional utilities and libraries. The macports are installing everything into /opt/local. But the default perl in macports is 5.12, specifying an ...
0
votes
0answers
5 views

What exactly determines the name of your module con CPAN?

There are several ways to install modules or even applications from CPAN. Usually, I install a module typing: perl -MCPAN -e 'install Foo::Bar' However, some modules as 'Padre', can be installed as ...
2
votes
1answer
67 views

How can I tell a CPAN installation of PDL to use my FFTW path?

I need to install the Perl PDL library via CPAN as the non-root user. CPAN for non-root works thanks to this SO question: How can I use CPAN as a non-root user? Now, PDL depends on the FFTW library. ...
0
votes
2answers
61 views

How do I create a multi-module distribution?

I want to create my own Perl module, but the problem is that it contain multiple .pm files. The structure is: lib ├── A_Z.pm └── T_test ├── A.pm ├── B.pm ├── C.pm ├── D.pm └── ...
0
votes
0answers
8 views

Can't locate CPAN/Author. after a failed upgrade of CPAN

I was trying to upgrade CPAN, so I putthe following lines in my terminal: cpan install CPAN The installation was not completed due to an error ([test_dynamic] Error 2). I started a new terminal and ...
1
vote
0answers
44 views

Connecting to Oracle from Strawberry Perl

I installed DBD::Oracle from CPAN and tried to use the code below to connect to Oracle DB: use DBI; use DBD::Oracle; BEGIN { $ENV{ORACLE_HOME} ='C:\instantclient_11_2'; ...
1
vote
2answers
96 views

perl Can't locate loadable object for module Math::Pari in @INC

I've written a perl script which run's fine on my environment, but on my client environment it fails on: Can't locate loadable object for module Math::Pari in @INC (@INC contains: Error-0.17020/lib ...
3
votes
2answers
50 views

How to find modules dependency & install it but without cpan/cpanm?

The problem is I don't have access to write $HOME directory. (I only have access to create new directory on $HOME/app-root/data/) because cpan/cpanm need to create new directory $HOME/.cpan/ I don't ...
0
votes
1answer
35 views

Is there a perl module to convert .bin file to .pem file

I want to convent my certificates from .bin file format to .pem file format, is there a perl module that I can use. Thanks.
0
votes
1answer
30 views

Installation local perl and modules from bash

My scripts require a new version of perl, which I have installed into a local directory, to avoid corrupting the packaged version of perl that comes with Debian. I configured and installed a tarball ...
2
votes
1answer
51 views

Perl: how to generate a list of 'use'd modules in a script? [duplicate]

I have a few Perl scripts which use quite an extensive amount of CPAN modules. Furthermore, these scripts use some custom perl modules which in turn have even more CPAN dependencies. Some of the ...
0
votes
1answer
79 views

DBIx::Class::Schema::Loader installation fails

Well, I been trying to get this work for the past two days, re installing dependencies, updating modules, but I haven't found any solution. install command line: $> cpan ...
0
votes
1answer
27 views

how to Run 'Build installdeps' to install missing prerequisites

Trying to run a Build.PL file and get following, and not uncommon error message: Checking prerequisites... build_requires: ! Test::Most is not installed recommends: * HTML::TableExtract ...
1
vote
2answers
53 views

IO::Compress::Zip read from filehandle into buffer

I'm trying to build a zipped xml-file on the fly and send it to the browser. I'm using IO::Compress::Zip with IO::String for that, but it doesn't work as I would expect from the documentation. First ...
0
votes
0answers
26 views

Require a cpan module to measure the cpu utilization/measurement of a spawned process during run-time

I tried AnyEvent::Monitor::CPU and Proc::CPUUsage these modules, but through these I am not able to fetch the data that I want. I want to measure the % of CPU the spawned process is using during ...
0
votes
2answers
73 views

GZip compression in Perl maintains file path in gz-file on Windows

I'm trying to send some gzipped files via e-mail. The packaging and sending of the files work fine, but when I open the .gz-files on a windows machine, the archive includes the filepath (in my case ...
0
votes
0answers
84 views

Installing Perl Modules with XAMPP and Ubuntu

I have been looking everywhere but I seem to be failing to get it. I want to install a perl module on my current XAMPP setup with Ubuntu . I have looked and tried everywhere and these two seemed ...
0
votes
0answers
23 views

Is it possible that install Event::Lib within cygwin?

I wrote a perl script under ubuntu.But now I need to build an exe file for windows users. I did these steps: install cygwin and all 'Devel' softwares. run 'apt-cyg install libevent-devel --mirror ...
0
votes
2answers
85 views

issue with creating perl script to imitate linux command “ifconfig”

I have an assignment in which I am to create a perl script in Linux to imitate the command "ifconfig". This command basically shows you information about your network interfaces. I have already ...
0
votes
1answer
78 views

How to Display IFconfig information with perl program in Linux

I have an assignment where i am supposed to create a perl script in linux that will give an output similar to that of the linux command "ifconfig". I have started writing the script but I repeatedly ...
1
vote
2answers
46 views

cannot change these permissions .CPAN

I have a problem when i want to install CPAN module I type cpan to install cpan , but i get this error : mkdir /home/cyrine/.cpan/CPAN: Permission >denied at ...
0
votes
1answer
78 views

install CPAN module

I have a problem when i want to install perl module I make " cpan" to install cpan , but i get this " Terminal does not support AddHistory. Your configuration suggests that CPAN.pm should use ...
0
votes
2answers
50 views

Rerun CPAN Config on Linux?

I accidentally interrupted CPAN while it was doing the initial configuration and now I cannot start it again. I am receiving the error Error while requiring CPAN::MyConfig: CPAN/MyConfig.pm did not ...
2
votes
1answer
65 views

Using PSPP-Perl-Module on Ubuntu 12.04

I want to use the PSPP-Perl-Module, but it seem to be much harder than expected. I would be fine using any version of the module, but since it seems like one has to build it on every mashine (please ...
0
votes
2answers
54 views

cpan2rpm does not seem to get installed Perl version

I'm running on RHEL6, with RHEL's perl-5.10.1-130.el6_4 installed. I am trying to build some RPMs using cpan2rpm 2.028. Also, perl-version-0.77-130.el6_4 is installed. It's giving odd failures, saying ...
0
votes
1answer
53 views

How to count the length of output in perl

I need to be able to count the output of the program i have below, the output basically supposed to look like website-name.com - Breaking news, opinion, politics, entertainment, sports and culture. ...
1
vote
1answer
26 views

Dependency of Image::Imlib2 on CpanTesters

I get a lot of errors on CpanTesters for my module EBook::MOBI::Image (It is just some additional stuff for EBook::MOBI. Like this I keep graphics-dependencies from the main module away for those who ...
0
votes
0answers
43 views

cpanm cant locate Module/CoreList.pm error?

I am trying to use cpanm on a Linux system where I successfully used it minutes ago to install a variety of package. When trying to install DBD::sqlite I get this error: Can't locate ...
0
votes
1answer
72 views

How to get information from log files and add them to database table using Perl DBI sqlite

I have this assignment which requires me to take the source ip and destination port from this log file and add them to a database table i created using Perl dbi sqlite. i have tried to write a script ...
0
votes
0answers
35 views

Net::FTP having trouble uploading ZIP-archives?

I'm trying to build a perl-script which zips a directory and uploads it to an FTP-server. I already got the zipping-part working, but unfortunately the ZIP-files always get 'destroyed', when uploaded ...
-3
votes
2answers
62 views

Creating Table in database from Perl using SQLite3

I'm having trouble creating a table in a database I created with Perl using dbi sqlite3. Using the code I have below, I want the table to contain port-probes, one line for each source ip and port. I ...
1
vote
1answer
121 views

How to use CPAN modules without access to CPAN?

I am greatly disappointed every time I am forced to retrieve a module from CPAN. In most environments I work in, internet access is severely restricted or completely denied. All compilers have been ...
1
vote
2answers
104 views

How to Print Spelled out month names rather than numbers

How can you get Perl to print names of months rather than their numbers for example: 9 should appear as September. I would like the program below to print names of months rather than their numbers. ...
0
votes
1answer
55 views

how to incorporate perl modules into script

I am a beginner at Perl, I need to use functions from the Perl module Date::Easter in order to create a program that will take a year from user input and display the date of Easter within that year, i ...
1
vote
1answer
36 views

How to configure log4perl.conf and a perl script so as to set correct permissions to log files?

I am using Log::Log4Perl for logging for my perl scripts. Everything is working great, except one thing; I have some common modules used by different scripts (and run by different users). I want those ...
1
vote
2answers
43 views

perl module for creating CLI [closed]

I wish to know is there any existing perl module which can provide the framework to create new CLI commands ? Thanks Arpit
1
vote
1answer
65 views

CPAN install module says OK but compilation fails on that module

I'm trying to subclass MIME::Parser::FileUnder as explained here. So I install this module: $ sudo cpan install MIME::Parser::FileUnder [...] Result: PASS DSKOLL/MIME-tools-5.504.tar.gz ...
3
votes
1answer
213 views

Archive::Any gives IO error

#!/usr/bin/perl use strict; use warnings; my $archive_files = "C:\\Temp\\FREMOTE\\test.zip"; sub extract_archive($$); extract_archive($archive_files, "C:\\Temp\\FREMOTE\\TEST\\"); ...
6
votes
2answers
107 views

How to manage the installation of modules used by an open source Perl project?

I work on a small open-source Perl project with Catalyst, Open Street Map and dozens of modules. I try to use as many modules found on the CPAN as I can because my aim is not to reinvent the wheel. ...
0
votes
2answers
91 views

Force locally installed module to use locally installed dependencies

I'm working on a project that requires all third-party (read: CPAN) perl modules to be installed in a perforce repository, so that any code that depends on them can be successfully run without anyone ...
0
votes
5answers
91 views

How to test your own Perl modules while not depending on other modules in production?

First of all, I think somebody needs to rewrite my question, I know what I am asking, not how I should ask it precisely. Assume I have some local module LOCAL::Commons and it has one subroutine ...
1
vote
0answers
48 views

Prevent losing graphs when using Spreadsheet::ParseExcel

I need to edit the data and graphs of an excel file. I can edit the data but graphs are lost. Spreadsheet::ParseExcel says: You can only rewrite the features that Spreadsheet::WriteExcel supports ...
1
vote
1answer
237 views

Error using DBD::Oracle with instantclient 11.2

I Want to use perl module DBD::Oracle on Mac OS X 10.8. I installed DBI through CPAN. Downloaded the Oracle instant client 11.2 (basic, sqlplus and jdk). Extracted it to /usr/local/oracle. $ ls ...
0
votes
2answers
229 views

Installing XML::Parser requires expat.h

I'm working on a project that requires all third-party (read: CPAN) perl modules to be installed in a perforce repository, so that any code that depends on them can be successfully run without anyone ...
0
votes
0answers
73 views

Net::SSH::Perl not working but up to date

I keep getting this when i try to run an SSH login Can't locate Net/SSH/Perl.pm in @INC (@INC contains: /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.8 ...
2
votes
1answer
116 views

“Invalid access to memory location” when installing module

Bit of a newbie to Perl. I have managed to install a handful of modules from CPAN on my Windows 7 PC via the command prompt, but I have hit a brick wall when installing Math::Random. Not sure what is ...
0
votes
2answers
95 views

Create a simple PDF file using perl

I am parsing a text file in my perl script and wanted to dumb my hash to a pdf file. I dont really need to do formatting of data, just some plain text going to be there in the pdf file. Using a heavy ...
0
votes
0answers
79 views

How do I install application from cpan command line [closed]

I enter cpan, and can install a given module with e.g.: cpan[1]> i Zoidberg::Shell But how do I install a complete application Zoidberg? I tried cpan[2]> i App::Zoidberg and also: cpanm ...

1 2 3 4 5 11