Re: Help me out!!!
From: Gary Stainburn (gary.stainburn_at_ringways.co.uk)
Date: 03/04/04
- Next message: R. Joseph Newton: "Re: Exit"
- Previous message: Bjorn Van Blanckenberg: "Re: Reading File & grep according item 5 and sorting"
- In reply to: Urvashi Mishra: "Help me out!!!"
- Next in thread: Zsdc: "Re: Help me out!!!"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
To: "Urvashi Mishra" <urvashim@india.hp.com>, <beginners@perl.org> Date: Thu, 4 Mar 2004 13:56:30 +0000
On Thursday 04 March 2004 1:17 pm, Urvashi Mishra wrote:
> hi !
>
> i am trying to implement multidimentional tree... and saw that a package
> called Tree::Nary already exits...
>
> i am use the above module and i am getting the following error ...
> Can't locate Tree/Nary.pm in@INC < @INC contains: C:\perl\site\lib.>
> i have saved this module in this dir but its not working....
> if someone can help me??????????
Hi,
What do you mean when you've 'saved the module in this dir'?
If you mean that you've simply downloaded the .tgz and unzipped it into the
current directory, then perl won't see it.
You may get away with adding
use lib './';
before the use Tree:Nary to tell Perl where to look, but you'd be better off
installing the module properly. (Assuming you're on some form of unix), as
root run the command
perl -MCPAN -e 'install Tree::Nary'
This will download and install the module for you and make it available to
everyone.
Note that if it is the first time you've run CPAN, you will be asked to
configure it. Simply choose the most logical answers, and if you're not sure
of a question, simlpy take the default.
-- Gary Stainburn This email does not contain private or confidential material as it may be snooped on by interested government parties for unknown and undisclosed purposes - Regulation of Investigatory Powers Act, 2000
- Next message: R. Joseph Newton: "Re: Exit"
- Previous message: Bjorn Van Blanckenberg: "Re: Reading File & grep according item 5 and sorting"
- In reply to: Urvashi Mishra: "Help me out!!!"
- Next in thread: Zsdc: "Re: Help me out!!!"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|