Skip to content

Commit

Permalink
Add readme. Fix mamba call
Browse files Browse the repository at this point in the history
  • Loading branch information
dcdenu4 committed Nov 15, 2024
1 parent 9b3f0a8 commit 0b60c79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions schistosomiasis-invest-readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# InVEST fork to support Schistosomiasis
2 changes: 1 addition & 1 deletion workbench/src/main/createPythonFlaskProcess.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export async function createJupyterProcess(pluginID, _port = undefined) {
// Extract the location of the installed plugin from `pip show`
// The notebook should be available there as package data
const pipShow = execSync(
`mamba run --prefix "${modelEnvPath}" pip show ${pluginID}`,
`${mamba} run --prefix "${modelEnvPath}" pip show ${pluginID}`,
{ windowsHide: true }
).toString();
const pluginLocation = pipShow.match(/Location: (.+)/)[1];
Expand Down

0 comments on commit 0b60c79

Please sign in to comment.