2017-01-17 45 views
-2
Can't locate Locale/Recode.pm in @INC (@INC contains: /usr/local/lib/perl5/5.10.0/x86_64-linux-thread-multi /usr/local/lib/perl5/5.10.0 /usr/local/lib/perl5/site_perl/5.10.0/x86_64-linux-thread-multi /usr/local/lib/perl5/site_perl/5.10.0 .) at /usr/local/bin/xls2csv line 9. 
BEGIN failed--compilation aborted at /usr/local/bin/xls2csv line 9. 

回答

0

無法訪問Module Locale/Recode.pm。 您需要安裝xls2csv correcly。 建議使用CPAN進行安裝,與make安裝相比,有時更容易 ,因爲它並不總是關心依賴關係。

只需檢查下面的perl程序。 修復任何錯誤,然後再運行整個xls2csv。

#!/usr/bin/perl 
use strict; 
use 5.006; 

use Getopt::Std; 
use Locale::Recode; 
use Spreadsheet::ParseExcel; 
use Spreadsheet::ParseExcel::FmtUnicode; 
use Text::CSV_XS; 
+0

如果在機器上缺少模塊(安裝),您可以通過添加一條線來修正,如使用lib'................ 「; –

相關問題