Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Data::UUID

Status
Not open for further replies.

tar565

Programmer
Jan 24, 2005
39
IE
Firstly thanks for all your help in finding this module.

The module (UUID.pm) is now present in C:/Perl/site/lib and C:/Perl/site but when I run the simple script to test it I get the following error.

-------------------
#!/usr/bin/perl
use Data::UUID;

my $uf = Data::UUID->new(); # creates a factory;
print $uf->create_str(), "\n" for 1..10;

-----------------
Can't locate loadable object for module Data::UUID in @INC (@INC contains: C:/Pe
rl/lib C:/Perl/site/lib .) at Rand.pl line 2
Compilation failed in require at Rand.pl line 2.
 
How did you install it. PPM or cpan?
--Paul

cigless ...
 
CPAN the file is called Data-UUID-0.11.tar.gz.

I have unzipped the file and placed the .pm file in the folder.


I am on windows, I have tried ppm but it is not available.
 
Have a look in the FAQ section here to find out more about installing modules with CPAN

Code:
perl -MCPAN -e shell

Looks like all your dependencies weren;t installed by default

--Paul

cigless ...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top