How do I install JavaTM Advanced Imaging API v1.1.3 on Ubuntu 14.04
I'm trying compare images as described on this Website but therefor I need to have JAI installed. I have downloaded the file jai-1_1_3-lib-linux-amd64.tar.gz from here.
I've also looked into the installationguide but I feel kind of lost and don't know how to go on from here.
My specs:
OS: Ubuntu 14.04 Trusty Tahr - 64bit
Java: java version "1.6.0_41" Java(TM) SE Runtime Environment (build 1.6.0_41-b02) Java HotSpot(TM) 64-Bit Server VM (build 20.14-b01, mixed mode)
If any other information is needed, I'll be happy to provide it.
Thanks in advance!
1 Answer
You should use the version in the official repositories if you can. Just run this to install:
sudo apt-get install libjai-core-javaIf you still want to go your way, just download a binary version, add executable permissions and run it:
wget
chmod +x jai-1_1_3-lib-linux-amd64-jre.bin
sudo ./jai-1_1_3-lib-linux-amd64-jre.bin
# finally, you can delete the installer if you want
rm jai-1_1_3-lib-linux-amd64-jre.bin 5