2019年10月25日 星期五

Program - ImportError: Cannot import site module and its dependencies: No module named site

出現錯誤訊息如標題顯示









在撰寫呼叫Python程式加上以下程式碼 即可正常運作😎
Properties props = new Properties();
props.put("python.home", "path to the Lib folder");
props.put("python.console.encoding", "UTF-8");
props.put("python.security.respectJavaAccessibility", "false");
props.put("python.import.site", "false");
Properties preprops = System.getProperties();
PythonInterpreter.initialize(preprops, props, new String[0]);

沒有留言:

張貼留言