Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
- name: Install dependencies
run: |
apk add --no-cache \
bash git python3 py3-pip py3-numpy \
bash git python3 python3-dev py3-pip py3-numpy \
dotnet-sdk-8.0 \
icu-libs
- name: Checkout
Expand Down
9 changes: 7 additions & 2 deletions OpenTap.Python/PythonInstallationDiscoverer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -181,9 +181,14 @@ static IEnumerable<string> LocatePythonsWin32()
}

}
else
else // Assume OS is Linux
{
foreach(var basePath in new [] {"/usr/lib/x86_64-linux-gnu/", "/usr/lib/aarch64-linux-gnu/"}
foreach(var basePath in new [] {
"/usr/lib/x86_64-linux-gnu/",
"/usr/lib/aarch64-linux-gnu/",
"/usr/lib/" // alpine linux

}
.Where(Directory.Exists))
foreach (var python in TryFindPythons(basePath))
{
Expand Down
Loading