General :: Installing CPAN Modules (perl) And Proxy Settings?

Feb 17, 2010

Here is my problem:I work with the BioPerl project. At first, I installed cpan modules without any problem,(eg.) sudo cpan -i CPAN::ModuleI've a proxy connection (university) and I'd configured my proxy settings correctly: perl -MCPAN -eshellIn the beginning it worked, but I don't know why it doens't work today. Here is the outline:

fernando@fer-laptop[fernando] sudo cpan -i Algorithm::Cluster
CPAN: Storable loaded ok (v2.15)
Going to read '/home/fernando/.cpan/Metadata'

[code]....

View 1 Replies


ADVERTISEMENT

Ubuntu :: Perl Modules Using CPAN - Get The Message From CPAN That This Module Is Already Up To Date?

Jun 7, 2010

I tried to use CPAN to install a module Algorithm::Loops using "install Algorithm::Loops". I get the message from CPAN that this module is already up to date.But, when I try to use it I get the message:

Can't locate Algorithm/Loops.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.10.1 /usr/local/share/perl/5.10.1 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10 /usr/local/lib/site_perl .) at ./test.pl line 4.
BEGIN failed--compilation aborted at ./test.pl line 4.

And indeed, the file Loops.pm is nowhere to be found.Isn't that a contradiction?

View 2 Replies View Related

Debian :: Install Perl Modules Using CPAN?

Mar 5, 2010

Can anyone provide me information about installing perl modules using CPAN.....

View 1 Replies View Related

Slackware :: Best Way To Install Perl Cpan Modules In Slackware?

Feb 23, 2010

What is the best way to install perl cpan modules in slackware?

i know that you can use 'cpan' and say 'install date::calc' but there is a perl-date-calc slackbuild on sbo. so which is the better way and why?

View 2 Replies View Related

CentOS 5 :: Installing Perl Modules Does Not Work?

Mar 2, 2011

CentOS and RHEL even though I've been using various Debian/Ubuntu Distros for quite some time. However, I always used to install perl modules via apt-get or, if that did not work, via cpan.In CentOS, I tried installing a couple of perl modules via yum but there are only a very few available. When trying to install perl modules via cpan, the install process usually fails during the make process.I'd prefer to install those modules via the distribution's package manger yum as it's easier to resolve dependencies. Are there any repositories I should add to have more perl packages available? (Where to add further repositories, I just know /etc/apt/sources.list in debian based distros)The other option still would be to install perl modules via cpan. For instance, when trying to cpan install Geo::IP, the output is as follows:

CPAN: Storable loaded ok
Going to read /root/.cpan/Metadata
Database was generated on Wed, 02 Mar 2011 02:42:03 GMT

[code]....

View 2 Replies View Related

Fedora :: No More Mirrors To Try When Trying To Install Perl-cpan

Sep 29, 2010

My yum is not working. I need cpan in order to install a perl module net::ldap.

This is what I am see when I run the command yum install perl-CPAN

om updates:

I try running yum clear and yum update and nothing fixes the issue.

View 13 Replies View Related

General :: Error Installing Image - Magick Via CPAN

May 6, 2010

There is this server that I have just put with Bugzilla. It needs Image::Magick module for rendering bmp or other image types to png to save some disk space and compress the images.

The best way to install it is using CPAN repos. And it gives whole lot of errors. I am attaching the file for errors.

But if try to install from cpan console it says Image::Magick is already the recent version.

Code:

And this is the bugzilla error:

Code:

View 11 Replies View Related

CentOS 5 :: Perl CPAN GD Module Failing - Can't Locate Object Method "png" Via Package "GD::Image"

Jun 29, 2010

I have CentOS 5.4 and have installed CPAN GD module.Installation messages seemed clean and successful.When I try to create a png file, perl gives the error message :

Can't locate object method "png" via package "GD::Image" at
/usr/lib/perl5/vendor_perl/5.8.8/DBD/Chart/Plot.pm line 1276 (#1)
(F) You called a method correctly, and it correctly indicated a package
functioning as a class, but that package doesn't define that particular
method, nor does any of its base classes. See perlobj.

Also, the following perl one-liner gives answer "No".

perl -e 'use GD; $im=GD::Image->new(); print $im->can("png") ? "Yes" : "No" , "
";'

I suspect that this GD module requires Image::Magick, but that borks on installation.

Magick.xs:2344: warning: implicit declaration of function �MagickCoreGenesis�
make: *** [Magick.o] Error 1
JCRISTY/PerlMagick-6.59.tar.gz

[code]...

View 3 Replies View Related

Software :: Unable To Install One Of Perl Modules

Nov 11, 2010

I am unable to install one of perl modules. Please guide me how to install perl modules resolving dependencies. How to verify installed module.

View 1 Replies View Related

Slackware :: Building The Perl Modules For Bugzilla 4.x.x?

May 16, 2011

I've done a clean install of Slackware 13.37 64-bit and am having trouble with building the Perl modules for Bugzilla 4.x.x (downloaded yesterday with bzr). This same problem exists with both Bugzilla stable and 4.1.2+.Executing checksetup.pl results in

Code:
checksetup.pl
* This is Bugzilla 4.1.2+ on perl 5.12.3

[code]....

View 3 Replies View Related

CentOS 5 :: How To Install Perl Graphing Modules

Apr 10, 2011

I have newly updated CentOS 5.6 server and would like to keep it "true" to CentOS, so try to avoid manually installing rpm's and CPAN modules.
I need to install perl graphing modules, Chart::Base, GD, GD::Graph, GD::Text, etc.
Have already done
Yum install gd gd-devel php-gd

View 3 Replies View Related

Ubuntu :: Switch Back To /usr/bin/perl After Installing Second Perl?

Aug 14, 2010

I recently reinstalled the B module for perl. Now I found out it didn't just do that, it installed a whole new copy of perl into /usr/local/bin/perl. When I type 'which perl' at the terminal, it says '/usr/local/bin/perl' instead of '/usr/bin/perl'. Normally, this wouldn't bother me. But I installed the one in local/bin without threading support. The one that comes with the system already is build with threading support, which is why I want to switch back to the system perl, and possibly remove the one in /usr/local/bin.

So how do I change it so that the result of 'which perl' returns as '/usr/bin/perl'? And what do I have to do to remove /usr/local/bin/perl?

The reason I need threading support is because I'm designing a file copier that copies several chunks of a file simultaneously to speed up the copying process. Guaranteed a useful script if it works.

View 7 Replies View Related

Software :: Perl Modules Installation - Can't Locate Spreadsheet / WriteExcel.pm In @INC

Jul 26, 2011

When i tried to execute im getting the following error

Can't locate Spreadsheet/WriteExcel.pm in @INC (@INC contains: /usr/local/lib/perl5/5.6.1/alpha-dec_osf /usr/local/lib/perl5/5.6.1 /usr/local/lib/perl5/site_perl/5.6.1/alpha-dec_osf /usr/local/lib/perl5/site_perl/5.6.1 /usr/local/lib/perl5/site_perl .) at excel.pl line 4. BEGIN failed--compilation aborted at excel.pl line 4. If i need to install the modules whether they will work for 5.6.1 version?

View 4 Replies View Related

Slackware :: Freenode, Cap_sasl.pl And Irssi: Slackbuilds For The Perl Modules?

Feb 8, 2010

With the latest Freenode changes SSL connection is now possible which presents no problem, particularly with rworkman's ca-certificates slackbuild, But configuring sasl for the password to nickserv presents a bit more of a challenge as 3 perl modules are required: Crypt::OpenSSL::Bignum, Crypt::DH, Crypt::Blowfish and Math::BigInt. I have not packaged perl modules for slackware before and I guess there is always a first time but can I ask if anybody has already neatly packaged up the required perl modules? I suspect they will be very popular with Freenode slackware irc users...

View 2 Replies View Related

General :: Work Teamviewer Properly In Proxy Server Settings?

Jun 10, 2010

How to work teamviewer properly on linux in proxy server settings?

View 1 Replies View Related

General :: Stop Drivers Modules Auto-installing?

Jul 20, 2011

I have two devices (a usb modem and a camera) permanently hard-wired into my system. When linux boots, it automatically inserts their drivers. However, I would like this to be under my control to insert as and when needed. Can anyone give any pointers as to how I might disable auto-insertion, whilst still allowing manual insertion via insmod or modprobe? I understand the usual method would be to use modules.conf, however in my modules.conf file, there is no entries at all.

View 1 Replies View Related

General :: Enable Modules After Installing Apache From Source

Sep 22, 2010

I installed apache from a source *.tar.gz with default configuration. Can I enable other modules (like mod_ssl, mod_dav_svn,...) while apache is running?

View 6 Replies View Related

General :: FATAL: Could Not Load /lib/modules/2.6.18-194.17.1.el5.028stab070.7PAE/modules.dep: No Such File Or Directory

Mar 6, 2011

I want set up VPN on my VPS but when i try to turn on tun/tap i see:

:/lib/modules# modprobe tun
FATAL: Could not load /lib/modules/2.6.18-194.17.1.el5.028stab070.7PAE/modules.dep: No such file or directory
os : debian 5
(folder lib/modules is empty)

View 1 Replies View Related

General :: Rc.modules Not Loading Modules At Startup?

May 11, 2010

I've been trying to load my pcmcia network card driver "xirc2ps_cs" at startup with no success. I have added "modprobe xirc2ps_cs" to the rc.modules file but it doesn't load at startup. Curiously, though, if I execute rc.modules AFTER the machine has booted it will load the modules just fine. Just not during the boot up process. Thinking that hotstart might have been causing problems I've disabled hotstart (chmod -x) temporarilly to remove it from the picture, but there was no change.

View 5 Replies View Related

General :: Can't Locate CPAN.pm In @INC - Error

Feb 22, 2010

I am executing command "yum install perl-CPAN". I got the following error "Can't locate CPAN.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 /usr/lib/perl5/site_perl /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.8 /usr/lib/perl5/vendor_perl /usr/lib/perl5/5.8.8/i386-linux-thread-multi /usr/lib/perl5/5.8.8 .).". Let me give you some details of the problem.

OS: CentOS release 5.4 (Final)
Architecture: : 32 Bit
Installed Perl Version: This is perl, v5.8.8 built for i386-linux-thread-multi

I've also studies previous posts on this topic which says "yum install perl-CPAN" will fix the problem when I execute this command I got "No package perl-CPAN available".

View 5 Replies View Related

Server :: Getting Rid Of Proxy Settings?

May 25, 2010

I have a server that i built as 9.10 Ubuntu a while ago. It's been running through a proxy server that i set as an export in /etc/profile. Recently i upgraded it to 10.04 Ubuntu.

Now i want to get rid of the proxy server. I removed the export in /etc/profile. I've tried restarting the network services, reloading the profile, rebooting the machine, setting a blank export, and a few other things...but it's still using the proxy!

I've tried grepping various folders but the only other place i can find a proxy setting is in the apt config (which i don't think would matter?).

View 2 Replies View Related

Ubuntu :: Set The Proxy Settings For Wikipedia?

Apr 24, 2010

I installed amarok in ubuntu karmic, I had to set the proxy settings for wikipedia and lyrics plugin to work , for that I had to edit the file .kde/share/config/kioslaverc , but now the problem is , that lyrics aren't being displayed although wikipedia and photos for the artist are being displayed. Whenever it starts playing a song, it just shows the usual message "lyrics are being fetched" for a couple of seconds and then nothing is displayed, I don't think anything is wrong with my proxy settings as wikipedia and photos plugin are working fine. Do I need some kde dependency for lyrics to work ?

View 2 Replies View Related

Ubuntu :: Proxy Settings For Browser?

Jul 6, 2010

I'm running proxoid (tethering app for android) which operates using a proxy server.

I set the system-wide proxy settings and they seem to work for most part except not on Google Chrome and Opera. Firefox works fine though flash is never detected. I get a 105 "NAME NOT RESOLVED" error on Chrome.

Also whenever I install something using apt-get, it tells me that the packages cannot be authenticated.

View 1 Replies View Related

General :: Correct BIOS Settings Required For Installing Red Hat E5

Oct 7, 2009

I have tried all the ways possible by changing settings in BIOS, changed the ROM, even the hard disk but nothing worked to install red hat 5 in my system. I tried to install in my laptop and it was done but not in my desktop. I m using HP dc7900 convertible minitower.

View 8 Replies View Related

Fedora Networking :: Yum And System Proxy Settings

Feb 19, 2010

how do i get yum, KPackageManager to use System Proxy Settings for there network access ? by proxy i mean it's a program that uses my phone as the proxy.here is the command adb forward tcp:8080 tcp:8080

now i got it to work for firefox like this localhost 8080 for all protocols.did the same in KDE proxy settings localhost 8080 for all protocols..just need to know hot to configure yum and kPackageManage
to use it as well?

View 14 Replies View Related

OpenSUSE Network :: 11.4 Subversion Proxy Settings ?

Sep 16, 2011

I installed openSuse 11.4 (KDE). It was excellent - everything was working great except for Subversion which use to work fine on 11.3 (command line is broken on 11.4, Eclipse/Subclipse works fine on both).

Subversion kept going to the proxy server instead of going directly to our internal Subversion server. I tried (1.) setting the proxy settings in Yast with excluding for our Subversion server, (2.) tried adding the usual settings in ~/.subversion/servers (which worked fine in 11.3). I could not check out on the command line from the local server, I can check out from external servers, eg: Google.

(I installed from the live CD download. I think this is using something some plasma widget thing for the network management.) Why is Subversion not using the usual ~/.subversion/servers file for its settings in 11.4 (KDE)? What is it using and how can I make it not use the proxy server? (Someone else mentioned his Subversion only started working after he used some Chrome plug-in to change the proxy settings but had no idea why?)

View 1 Replies View Related

Ubuntu :: Set Default Proxy Settings For Java?

Jul 27, 2010

how to set default proxy settings for java? Windows allows you to do this in control panel-java. Does Ubuntu have something similar? Its causing my java apps to time out and Firefox to freeze.

Ubuntu 10.04

java version "1.6.0_18"
OpenJDK Runtime Environment (IcedTea6 1. (6b18-1.8-0ubuntu1)
OpenJDK Server VM (build 14.0-b16, mixed mode)

View 2 Replies View Related

Ubuntu Networking :: Can't Set Any Proxy Settings In Gnome 3

Apr 30, 2011

I just can't set any proxy settings in Gnome 3 Network settings. Is it a bug or...?
I installed Ubuntu 11.04 and then used a PPA to install Gnome 3. Some other "problem" is I can't set single click opening of folders...

View 2 Replies View Related

Networking :: Socks 5 To Bypass Proxy Settings?

Oct 7, 2010

An application that supports SOCKS 5 protocol can forward its network connection over ssh and dynamically forward to any host name that you specify isn't it ? that means firebox web browser can use SOCKS 5 protocol can be used by pass proxy settings isn't it ? so how can a sys admin remotely detect if a particular user is bypassing proxy settings using SOCKS 5 protocol ?

View 1 Replies View Related

Fedora Networking :: How To Configure Proxy Settings For Whole System In F12

Nov 24, 2009

The problem is that he did not specify exactly where in /etc/profile. I am trying to make a custom spin of F12 but I cannot do it behind the proxy as it is now.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved