We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ffi.ts
1 parent df70b03 commit 6ff0b2bCopy full SHA for 6ff0b2b
src/ffi.ts
@@ -9,7 +9,7 @@ const DENO_PYTHON_PATH = Deno.env.get("DENO_PYTHON_PATH");
9
if (DENO_PYTHON_PATH) {
10
searchPath.push(DENO_PYTHON_PATH);
11
} else {
12
- if (Deno.build.os === "windows" || Deno.build.os === "linux") {
+ if (Deno.build.os === "windows" || Deno.build.os === "linux" || Deno.build.os === "windows_nt") {
13
searchPath.push(
14
...SUPPORTED_VERSIONS.map(([major, minor]) =>
15
`${Deno.build.os === "linux" ? "lib" : ""}python${major}${
0 commit comments