<div dir="ltr">So, I&#39;ve downloaded and extracted the graalvm-ce-java11-linux-amd64-20.2.0.tar.gz<br><div><br></div><div>I want to be able to run this example code in Eclipse:</div><div>import org.graalvm.polyglot.*;<br>import org.graalvm.polyglot.proxy.*;<br><br>public class HelloPolyglot {<br>    public static void main(String[] args) {<br>        System.out.println(&quot;Hello Java!&quot;);<br>        try (Context context = Context.create()) {<br>            context.eval(&quot;python&quot;, &quot;print(&#39;Hello Python!&#39;)&quot;);<br>        }<br>    }<br>}<br></div><div><br></div><div>How do I do that? I tried modifying the project&#39;s Java Build Path -&gt; Libraries -&gt; JRE System Library to point to the root directory of the GraalVM, but now when I press &quot;Run&quot;, it throws the following exception:</div><div><br></div><div>Exception in thread &quot;main&quot; java.lang.Error: Unresolved compilation problem: <br><br>        at py4j.examples.HelloPolyglot.main(HelloPolyglot.java:5)<br></div></div>