in reply to Installing Bundle::DBI
Modules sometimes contain C code, which is used to implement parts that run faster than the perl equivalent would.
There are easier ways to install modules, and on Windows, precompiled, packaged modules are available.
First, determine what flavour of perl you use. Run the command:
If the output contains the words "Activestate", such as:perl -v
Then you can use "PPM" to install modules. In your case, enter:Binary build 1003 [285500] provided by ActiveState http://www.ActiveSt +ate.com
and that should do all the work for you.ppm install DBI
If it is not activestate, you will probably need to use the "cpan" command.
Theory is when you know something, but it doesn't work.
Practice is when
something works, but you don't know why it works.
Programmers combine Theory
and Practice: Nothing works and they don't know why.
-Anonymous
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Installing Bundle::DBI
by manishrathi (Beadle) on Feb 10, 2010 at 03:37 UTC | |
by NetWallah (Canon) on Feb 10, 2010 at 06:34 UTC |