Skip to content
This repository has been archived by the owner on Jun 1, 2024. It is now read-only.

Commit

Permalink
change python.exe to python for platform independence
Browse files Browse the repository at this point in the history
  • Loading branch information
jcschaff committed Jul 12, 2022
1 parent bead670 commit aabb017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vcell-cli/src/main/java/org/vcell/cli/CLIUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@ public void instantiatePythonProcess() throws IOException {
this.checkPythonInstallation();

// Start Python
ProcessBuilder pb = new ProcessBuilder("python.exe", "-i", "-W ignore");
ProcessBuilder pb = new ProcessBuilder("python", "-i", "-W ignore");
pb.redirectErrorStream(true);
CLIUtils.pythonProcess = pb.start();
CLIUtils.pythonOSW = new OutputStreamWriter(pythonProcess.getOutputStream());
Expand Down

0 comments on commit aabb017

Please sign in to comment.