The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here

RapidMiner installation on ubuntu system

sangaresangare Member Posts: 2 Learner I
I am trying to install RapidMiner on my ubuntu system. I have already installed jdk and jre 14. But once I try to install RapidMiner it shows this message :
Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/bind/DatatypeConverter
    at com.rapidminer.license.verification.JarVerifier.createPublicKey(JarVerifier.java:270)
    at com.rapidminer.license.verification.JarVerifier.<clinit>(JarVerifier.java:140)
    at com.rapidminer.launcher.GUILauncher.main(GUILauncher.java:287)
Caused by: java.lang.ClassNotFoundException: javax.xml.bind.DatatypeConverter
    at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:606)
    at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:168)
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:522)
Can anyone help please

thanks

Answers

  • BalazsBaranyBalazsBarany Administrator, Moderator, Employee-RapidMiner, RapidMiner Certified Analyst, RapidMiner Certified Expert Posts: 955 Unicorn
    Hi @sangare

    currently you need Java 8 for RapidMiner Studio. 
    There are OpenJDK and Amazon Corretto versions of Java 8, both work well. I use this:
    OpenJDK Runtime Environment Corretto-8.222.10.1 (build 1.8.0_222-b10)

    Best regards,
    Balázs
  • sangaresangare Member Posts: 2 Learner I
    Thank you very well for your reply. So RapidMiner does not work with advanced version of java ? It only works with java 8?
    Best regards
  • BalazsBaranyBalazsBarany Administrator, Moderator, Employee-RapidMiner, RapidMiner Certified Analyst, RapidMiner Certified Expert Posts: 955 Unicorn
    Hi @sangare,

    Java 8 and Java 11 are different branches. After Java 8, the system was modularized and a lot of changes were made. 11 is not more "advanced" than Java 8, it is an incompatible version for preparing future developments.

    Many established Java based applications are on the Java 8 branch. RapidMiner development is working on making the changes necessary to run on Java 11+, but it doesn't have a high priority, and for now, you have to use Java 8 if you want to use RapidMiner.

    Regards,
    Balázs
  • David_ADavid_A Administrator, Moderator, Employee-RapidMiner, RMResearcher, Member Posts: 297 RM Research
    In addition,

    switching between different Java versions is very simple and can be done with the
    sudo update-alternatives --config java
    command. For instance if there are other programs that specifically require a higher Java version.

    Best,
    David
Sign In or Register to comment.