Python detection is bad #117
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
It seems that not all Windows users have an executable named
python3
on their machine, and Windows installations of Python from the website perhaps just name the executablepython
. However, it's important that our scripts run under Python 3. We need to update our baseorca.bat
batch script to use eitherpython3
orpython
depending on what's available (and probably do a version check too).Python detection on Windows is badto Python detection is badOn further review I guess this sometimes applies to Linux systems too. Generally I guess it's just not wise to rely on the presence of
python3
.This tool may help determine which versions of Python we support: https://github.com/netromdk/vermin
bvisness referenced this issue2023-09-19 03:31:11 +00:00