On Mon Dec 08 2008 @ 7:17, itshardtogetone wrote: > Hi, > My website is hosted in 110mb.com and they do not have this module installed > Algorithm::Numerical::Shuffle qw /shuffle/; > So what can I do to use that module. > Thanks
You should be able to create a directory in your $HOME, say /myPerlModules and then add a line like this at the top of your script (after use warnings and use strict) use lib '/home/username/myPerlModules'; use Algorithm::Numerical::Shuffle qw/shuffle/; # Do stuff See here for more on this: http://perlmonks.org/?node_id=128077#permission Hope this helps, T -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/