I Have install latest version of CPAN v1.9800 in my ubuntu 10.04.
When i try to install any cpan module using perl -MCPAN -e shell;install GD::Graph,
It's showing below issue.
I can't find out problem.
**root@karthik#perl -MCPAN -e shell**
***Terminal does not support AddHistory.
cpan shell -- CPAN exploration and modules installation (v1.9800)
Enter 'h' for help.
cpan[1]> install GD::Graph
I have heard that it is best to not install modules from CPAN where your system's version of Perl is.
You probably have Data::Dumper installed under site_perl, along with an old Time::HiRes according to your cpan output. The cpan shell installs modules under site_perl. They are harder to uninstall than packaged modules because you have to remove them manually by deleting the files. I'd recommend using either cpan or perl packaged modules but not both.
Hi,
May be people here already know it, but just wanted to share this.
Ubuntu makes it real easy to install Perl Modules.
All you need to do is open the Ubuntu Software Center and type the name of the module and it works !!
For example, say you need to install the LibXML module.
I have small problem cause everytime i issue
cpan YAML
or try to install any perl module it install's it inito /root/perl5 and with this any other user cannot use modules that I've installed as a root.
Even if I do
rm -frv /root/perl5 /root/.cpan
and rerun cpan YAML it still installs into root home dir. How can i change this ?
I'm sorry for my english, I'm portuguese and I really can't write very wellSo, for the first time I can't solve a problem by seraching, maybe because I'm new to perl. The problem is, I can't install modules as I could in my previous operating system.
Thourgh Perl scripting, Is it possible to upload excel sheet to sharepoint portal ?
If the answer is YES.. Could you please share your thoughts and required CPAN modules or any examples to proceed further?
Regards,
Giridhar S
---------- Post updated at 04:26 AM ---------- Previous update was at 12:46 AM ----------
Any help on this will be much appreciated.
Regards,
Giridhar S
I am writing a perl code(windows) to traceroute IP address and to print the output.
I had executed the below code which was taken from cpan modules
Code:
#!C:/perl/bin/perl.exe
use Net::Traceroute;
$tr = Net::Traceroute->new(host=> "google.com");
if($tr->found) {
my $hops = $tr->hops;
if($hops > 1) {
print "Router was " .
$tr->hop_query_host($tr->hops
I have been trying to install Bugzilla on a CentOS EC2 instance for days now and I'm running into this error. I have no idea what to do and Google is providing me no help. Can anyone point me in the right direction?