Hi Guys, I have been running a virtual machine and trying to install Koha for testing purposes... I have noted the following problems with the instructions for ubuntu... buildessentials must be install before doing any installs within perl. I am wondering if there some more packages which must be installed in ubuntu before actually proceeding to to the set up of Koha, because i have the following parts which will not install within perl... 1. Net::Z3950::ZOOM 2. PDF::API2::Simple 3. XML::LibXML 4. XML::LibXSLT Now, in the two latter cases I have installed libxml2-dev and libxslt1-dev I suspect there are other packages which are not apparent from the names shown above... please let me know what they are. :( regards, les -- View this message in context: http://koha.1045719.n5.nabble.com/Install-on-Precise-ubuntu-12-04-tp5762697.... Sent from the Koha-general mailing list archive at Nabble.com.
At 08:36 AM 7/27/2013 -0700, L.W.Johnstone wrote: [snip]
1. Net::Z3950::ZOOM 2. PDF::API2::Simple 3. XML::LibXML 4. XML::LibXSLT
Now, in the two latter cases I have installed libxml2-dev and libxslt1-dev I suspect there are other packages which are not apparent from the names shown above... please let me know what they are. :(
You don't say what version of Koha you are installing (I have no problems installing them in 3.8), so there may be dependencies, but sudo apt-get install libnet-z3950-zoom-perl (gives you v. 1.26) sudo apt-get install libpdf-api2-simple-perl (gives you v. 1.1.4) sudo apt-get install libxml-libxml-perl (gives you v. 1.89) sudo apt-get install libxml-libxslt-perl (gives you v. 1.75) The Ubuntu naming convention is normally quite straightforward. Start with 'lib' end with '-perl' and sandwich in between your package in lower case, replacing any '::' with '-' There appear to be 32 and 64 bit versions of all four. Best - Paul
Greetings, Installing Koha on an Ubuntu VM is exactly what I do for my development/testing environments. If you are having problems with installation, then you are likely following the instructions from within the tar gzip file. I would recommend using: $ sudo apt-get install koha-deps koha-perldeps Assuming you have added the appropriate repository into /etc/apt/source.list.d/koha.list $ echo deb http://debian.koha-community.org/koha squeeze main | sudo tee /etc/apt/sources.list.d/koha.list $ wget -O- http://debian.koha-community.org/koha/gpg.asc | sudo apt-key add - $ sudo apt-get However, building from the tar gzip file is painful by comparison to packages. But if you are willing and able to install from packages, rather than source, you might rather follow the instructions here: http://wiki.koha-community.org/wiki/Koha_on_ubuntu_-_packages GPML, Mark Tompsett
participants (3)
-
L.W.Johnstone -
Mark Tompsett -
Paul