Help with error message while installing
I am trying to install Koha on a laptop with Ubuntu 11.10 OS following the directions on wiki.koha-community.org/wiki/Koha_on_Ubuntu I get to the install Koha part and get error messages that I can't seem to get worked out. I run the following commands: perl Makefile.PL (then follow the directions in Appendix A) make make test make test brings back an error message. It says the following: # Failed test 'use C4::RotatingCollections;' # at t/00-load.t line 32. # Tried to use 'C4::RotatingCollections'. # Error: Can't locate Business/ISBN.pm in @INC (@INC contains: /home/adam/koha-latest/koha-3.06.00.000/blib/PERL_MODULE_DIR /home/adam/koha-latest/koha-3.06.00.000/blib/arch /etc/perl /usr/local/lib/perl/5.12.4 /usr/local/share/perl/5.12.4 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.12 /usr/share/perl/5.12 /usr/local/lib/site_perl .) at /home/adam/koha-latest/koha-3.06.00.000/blib/PERL_MODULE_DIR/C4/Koha.pm line 29. # BEGIN failed--compilation aborted at /home/adam/koha-latest/koha-3.06.00.000/blib/PERL_MODULE_DIR/C4/Koha.pm line 29. # Compilation failed in require at /home/adam/koha-latest/koha-3.06.00.000/blib/PERL_MODULE_DIR/C4/Biblio.pm line 33. # BEGIN failed--compilation aborted at /home/adam/koha-latest/koha-3.06.00.000/blib/PERL_MODULE_DIR/C4/Biblio.pm line 33. # Compilation failed in require at /home/adam/koha-latest/koha-3.06.00.000/blib/PERL_MODULE_DIR/C4/Reserves.pm line 27. # BEGIN failed--compilation aborted at /home/adam/koha-latest/koha-3.06.00.000/blib/PERL_MODULE_DIR/C4/Reserves.pm line 27. # Compilation failed in require at /home/adam/koha-latest/koha-3.06.00.000/blib/PERL_MODULE_DIR/C4/Circulation.pm line 26. # BEGIN failed--compilation aborted at /home/adam/koha-latest/koha-3.06.00.000/blib/PERL_MODULE_DIR/C4/Circulation.pm line 26. # Compilation failed in require at /home/adam/koha-latest/koha-3.06.00.000/blib/PERL_MODULE_DIR/C4/RotatingCollections.pm line 31. # BEGIN failed--compilation aborted at /home/adam/koha-latest/koha-3.06.00.000/blib/PERL_MODULE_DIR/C4/RotatingCollections.pm line 31. # Compilation failed in require at (eval 19) line 2. # BEGIN failed--compilation aborted at (eval 19) line 2. # Tests were run but no plan was declared and done_testing() was not seen. FAILED--Further testing stopped: ***** PROBLEMS LOADING FILE 'C4::RotatingCollections' make: *** [test_dynamic] Error 255 I would appreciate any help anyone can give me on this. Thank you! -- Adam Fullerton Electronic/Technical Services Librarian & Assistant Professor Morningside College 1501 Morningside Ave Sioux City, IA 51106 Phone: 712-274-5247 Fax: 712-274-5224 attn: Fullerton Email: fullertona@morningside.edu Being a librarian is not a job...it's a lifestyle.
2011/11/7 Adam Fullerton <fullertona@morningside.edu>:
I am trying to install Koha on a laptop with Ubuntu 11.10 OS following the directions on wiki.koha-community.org/wiki/Koha_on_Ubuntu I get to the install Koha part and get error messages that I can't seem to get worked out. I run the following commands:
Its pretty much always better to use the INSTALL files that come with Koha, as they are usually more up to date.
perl Makefile.PL (then follow the directions in Appendix A) make make test make test brings back an error message. It says the following: # Failed test 'use C4::RotatingCollections;' # at t/00-load.t line 32. # Tried to use 'C4::RotatingCollections'. # Error: Can't locate Business/ISBN.pm in @INC (@INC contains:
There's your problem right there you are missing at least one perl module You should be able to apt-get install libbusiness-isbn-perl to get that on, but if that one is missed, others probably are. When you ran perl Makefile.PL did it tell you, you were missing some? And what version of Koha are you installing? If its the latest, you might be better off install from the debian packages for it. Chris
participants (2)
-
Adam Fullerton -
Chris Cormack