Re: algorithm/permute.pm

2008-04-17 Thread Sharan Basappa
On Thu, Apr 17, 2008 at 7:37 PM, Chas. Owens <[EMAIL PROTECTED]> wrote: > > On Apr 17, 2008, at 10:03, Sharan Basappa wrote: > snip > > > > $perl Makefile.PL PREFIX=/u/basappas/local/perl/perm_install > > > snip > > Try > > use lib "/u/basappas/local/perl/perm_install/lib/perl5/site_perl"; > >

Re: algorithm/permute.pm

2008-04-17 Thread Chas. Owens
On Apr 17, 2008, at 10:03, Sharan Basappa wrote: snip $perl Makefile.PL PREFIX=/u/basappas/local/perl/perm_install snip Try use lib "/u/basappas/local/perl/perm_install/lib/perl5/site_perl"; -- Chas. Owens wonkden.net The most important skill a programmer can have is the ability to read. -

Re: algorithm/permute.pm

2008-04-17 Thread Sharan Basappa
On Thu, Apr 17, 2008 at 1:26 AM, Rob Dixon <[EMAIL PROTECTED]> wrote: > Sharan Basappa wrote: > > Rob, > > > > I replied to Chas' mail with steps I have followed to install the module. > > I have also tried omitting Algorithm to PREFIX, but that does not help. > > > > perl Makefile.PL PREFIX=

Re: algorithm/permute.pm

2008-04-16 Thread Rob Dixon
Sharan Basappa wrote: > Rob, > > I replied to Chas' mail with steps I have followed to install the module. > I have also tried omitting Algorithm to PREFIX, but that does not help. > > perl Makefile.PL PREFIX=/u/basappas/local/perl/iter2/Algorithm-Permute-0.11 > make install > setenv PERL5LIB /u/

Re: algorithm/permute.pm

2008-04-16 Thread Sharan Basappa
Rob, I replied to Chas' mail with steps I have followed to install the module. I have also tried omitting Algorithm to PREFIX, but that does not help. perl Makefile.PL PREFIX=/u/basappas/local/perl/iter2/Algorithm-Permute-0.11 make install setenv PERL5LIB /u/basappas/local/perl/iter2/Algorithm-Pe

Re: algorithm/permute.pm

2008-04-16 Thread Sharan Basappa
On Tue, Apr 15, 2008 at 9:58 PM, Chas. Owens <[EMAIL PROTECTED]> wrote: > Where/how did you install the module. If it was not installed in the normal > directory (ie the one it will be installed in if you installed as root) you > will need to either set the PERL5_LIB environmental variable or use

Re: algorithm/permute.pm

2008-04-15 Thread Rob Dixon
Sharan Basappa wrote: > On Fri, Apr 4, 2008 at 8:48 PM, Sharan Basappa <[EMAIL PROTECTED]> wrote: >> Dont seem to have luck. I did make test followed by make install. >> Here is what I got: >> make install >> Installing >> /u/basappas/local/perl/Algorithm-Permute-0.06/lib/perl5/site_perl/5.8.5/

Re: algorithm/permute.pm

2008-04-15 Thread Chas . Owens
Where/how did you install the module. If it was not installed in the normal directory (ie the one it will be installed in if you installed as root) you will need to either set the PERL5_LIB environmental variable or use the lib pragma. -- Chas. Owens wonkden.net The most important skill a

Re: algorithm/permute.pm

2008-04-15 Thread Sharan Basappa
On Fri, Apr 4, 2008 at 8:48 PM, Sharan Basappa <[EMAIL PROTECTED]> wrote: > Dont seem to have luck. I did make test followed by make install. > Here is what I got: > make install > Installing > /u/basappas/local/perl/Algorithm-Permute-0.06/lib/perl5/site_perl/5.8.5/i386-linux-thread-multi/auto/

Re: algorithm/permute.pm

2008-04-04 Thread Sharan Basappa
Dont seem to have luck. I did make test followed by make install. Here is what I got: make install Installing /u/basappas/local/perl/Algorithm-Permute-0.06/lib/perl5/site_perl/5.8.5/i386-linux-thread-multi/auto/Algorithm/Permute/Permute.so Installing /u/basappas/local/perl/Algorithm-Permute-0.06/

Re: algorithm/permute.pm

2008-04-01 Thread sisyphus
> I did the following: > perl Makefile.PL PREFIX=/u/basappas/local/perl/Algorithm-Permute-0.06 That's probably where you've got the Algorithm-Permute source - I'm not so sure it's a good idea to install the module into the source folder, but if you want to do that then next run 'make test', follow

Re: algorithm/permute.pm

2008-03-31 Thread Sharan Basappa
Here is what I have been able to do after installing the permute module: My updated code looks like: #!/usr/bin/perl use lib "/u/basappas/local/perl/Algorithm-Permute-0.06/Algorithm::Permute"; Algorithm::Permute::permute { print "@array\n" } @array; When I execute this script, I get the following

Re: algorithm/permute.pm

2008-03-31 Thread Sharan Basappa
I did the following: perl Makefile.PL PREFIX=/u/basappas/local/perl/Algorithm-Permute-0.06 I got the following message: perl/Algorithm-Permute-0.06 Writing Makefile for Algorithm::Permute Now what? Should I execute the make file? After that can I point to this library and start using new library

Re: algorithm/permute.pm

2008-03-26 Thread sisyphus
On Mar 25, 2:52 am, [EMAIL PROTECTED] (Sharan Basappa) wrote: > Hi, > > I am trying to use permute call from the above module and I get the > following error. > I believe this is due to either missing lib or incorrect path setting. > Can you tell > me how to install this package quickly in my home

Re: algorithm/permute.pm

2008-03-24 Thread Paul Lalli
On Mar 24, 11:52 am, [EMAIL PROTECTED] (Sharan Basappa) wrote: > Hi, > > I am trying to use permute call from the above module and I get the > following error. > I believe this is due to either missing lib or incorrect path setting. > Can you tell > me how to install this package quickly in my home