-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install fmiprecice and micro-manager from pipx instead of setting up …
…venv
- Loading branch information
Showing
2 changed files
with
4 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,5 @@ | ||
#!/usr/bin/env bash | ||
set -ex | ||
|
||
python -m venv ~/python-venvs/fmiprecice | ||
# shellcheck disable=SC1090 # We don't need to lint this external script | ||
source ~/python-venvs/fmiprecice/bin/activate | ||
|
||
# Install the FMI runner from PIP | ||
python -m pip install fmiprecice | ||
|
||
deactivate | ||
# Install the FMI runner (stand-alone application) from PyPI | ||
pipx install fmiprecice |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
#!/usr/bin/env bash | ||
set -ex | ||
|
||
python -m venv ~/python-venvs/micro-manager | ||
# shellcheck disable=SC1090 # We don't need to lint this external script | ||
source ~/python-venvs/micro-manager/bin/activate | ||
# Install the micro-manager (stand-alone application) from PyPI | ||
pipx install micro-manager-precice | ||
|
||
python -m pip install micro-manager-precice | ||
|
||
deactivate |