Question #250145 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/250145

    Status: Open => Answered

RaiMan proposed the following answer:
Might be, that when using Eclipse, some needed environment variables are
set in a way, that it works.

So you might print out the environment variables when running in Eclipse:
import java.util.Map;
Map<String, String> env = System.getenv();
for (String key : env.keySet()) System.out.println(String.format("%s : %s", 
key, env.get(key)));

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to