Skip to content

Commit 5d15e58

Browse files
authored
Update runpythonvirtual.nim
1 parent ee9e97c commit 5d15e58

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

runpythonvirtual.nim

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import osproc, os, strformat
44
# HARD-CODED EXECUTABLE PATH
55
# ================================
66
when defined(windows):
7-
const exePath = r"C:\Programs\PythonVirtualEnv\tuivirtual\Scripts\python.exe" # Change to your executable
7+
const exePath = r"path\to\your\python.exe" # Change to your executable
88
else:
99
const exePath = "/home/you/yourprogram" # Change for Linux/macOS
1010

@@ -25,3 +25,4 @@ when isMainModule:
2525
# Wait for it to finish
2626
discard process.waitForExit()
2727
echo "Process finished."
28+

0 commit comments

Comments
 (0)