i am getting Error
can’t locate spreadsheet writeexcel.pm in @inc @inc contains
yes i know, it require the excel plugin,
am using straberry perl,
tell me where i find the excel plugin for PERL, and where shoukld paste that excel plugin
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can find the module on CPAN. To install it on strawberry perl interactively, do
or (non-interactive)
Edit:
If you get any errors about unfulfilled dependencies (missing modules like
OLE::Storage_Lite), install these dependencies usingcpan <dependency>and then continue installation of your package.If you don’t need to stick on Strawberry Perl, you could switch over to ActiveState Perl which comes with an integrated package manager (PPM) that installs the required modules (including dependencies). ActiveState provides a repository with pre-built modules, so they don’t need to be compiled.
Is
@INCreally empty? If so, you have to set@INCin order to specify the include directories for perl to search for modules.Furthermore, I’d expect that the error message would read
if you specified the dependency correctly with
use Spreadsheet::WriteExcel;.