2013-09-24 12 views
1

우분투 12.10에 perl 용 Google :: Chart 모듈을 설치하고 싶습니다. 나는 다음과 같은 명령으로 모듈을 설치하려고하면Cpanm이 모듈을 설치하지 못했습니다

cpanm Google::Chart 

오류 메시지 :

--> Working on Google::Chart                                    
Fetching http://www.cpan.org/authors/id/D/DM/DMAKI/Google-Chart-0.05014.tar.gz ... OK                     
Configuring Google-Chart-0.05014 ... OK                                 
Building and testing Google-Chart-0.05014 ... FAIL                              
! Installing Google::Chart failed. See /root/.cpanm/work/1380032137.15804/build.log for details. Retry with --force to force install it. 

로그 파일 :

# Failed test 'use Google::Chart;' 
# at /root/.cpanm/work/1380031926.15351/Google-Chart-0.05014/inc/Test/UseAllModules.pm line 69. 
#  Tried to use 'Google::Chart'. 
#  Error: Attempt to reload Google/Chart/Color.pm aborted. 
# Compilation failed in require at lib/Google/Chart.pm line 9. 
# BEGIN failed--compilation aborted at lib/Google/Chart.pm line 9. 
# Compilation failed in require at (eval 350) line 2. 
# BEGIN failed--compilation aborted at (eval 350) line 2. 

# Failed test 'use Google::Chart::Marker;' 
# at /root/.cpanm/work/1380031926.15351/Google-Chart-0.05014/inc/Test/UseAllModules.pm line 69. 
#  Tried to use 'Google::Chart::Marker'. 
#  Error: Attempt to reload Google/Chart/Color.pm aborted. 
# Compilation failed in require at lib/Google/Chart/Marker.pm line 68. 
# BEGIN failed--compilation aborted at lib/Google/Chart/Marker.pm line 68. 
# Compilation failed in require at (eval 378) line 2. 
# BEGIN failed--compilation aborted at (eval 378) line 2. 
Bailout called. Further testing stopped: failed: Google::Chart::Color,Google::Chart,Google::Chart::Marker 
FAILED--Further testing stopped: failed: Google::Chart::Color,Google::Chart,Google::Chart::Marker 
make: *** [test_dynamic] Error 255 
-> FAIL Installing Google::Chart failed. See /root/.cpanm/work/1380031926.15351/build.log for details. Retry with --force to force install it. 
+0

CPAN 테스터 보여 많은 많은 플랫폼에서 실패합니다. 행운을 빌어 요 : http://matrix.cpantesters.org/?dist=Google-Chart+0.05014 – toolic

+0

이 모듈을 설치할 다른 방법이 있습니까? – erbal

+0

CPAN에있는 버그 보고서를보고 누군가가보고있는 문제를 해결하기 위해 패치를 업로드했는지 확인할 수 있습니다. – toolic

답변

1

시도 :

cd /root/.cpanm/work/1380031926.15351/Google-Chart-0.05014/ (or wherever it's been unwrapped) 
perl Makefile.PL 
make && make install 
관련 문제