Accept Python 3.14 installs
This commit is contained in:
@@ -42,7 +42,7 @@ Wichtig: Das Fenster waehrend des Encodings offen lassen. Am Ende bleibt es steh
|
|||||||
|
|
||||||
Hinweis: Auf manchen Windows-Rechnern gibt es den Befehl `py` nicht. Das ist normal. `create_mezzanine.bat` sucht deshalb automatisch nach mehreren Python-Varianten:
|
Hinweis: Auf manchen Windows-Rechnern gibt es den Befehl `py` nicht. Das ist normal. `create_mezzanine.bat` sucht deshalb automatisch nach mehreren Python-Varianten:
|
||||||
|
|
||||||
1. lokale Python-Installationen wie `Python313`, `Python312`, `Python311`, `Python310`
|
1. lokale Python-Installationen wie `Python314`, `Python313`, `Python312`, `Python311`, `Python310`
|
||||||
2. `py`
|
2. `py`
|
||||||
3. `python`
|
3. `python`
|
||||||
4. `python3`
|
4. `python3`
|
||||||
@@ -53,7 +53,7 @@ Wenn nichts davon gefunden wird, zeigt die Batch-Datei eine Installationsmeldung
|
|||||||
|
|
||||||
`py` ist ein kleiner Python-Starter fuer Windows. Er hilft, die passende Python-Version zu finden. Fuer dieses Tool ist `py` praktisch, aber nicht zwingend notwendig, weil `create_mezzanine.bat` auch nach `python` und lokalen Python-Installationen sucht.
|
`py` ist ein kleiner Python-Starter fuer Windows. Er hilft, die passende Python-Version zu finden. Fuer dieses Tool ist `py` praktisch, aber nicht zwingend notwendig, weil `create_mezzanine.bat` auch nach `python` und lokalen Python-Installationen sucht.
|
||||||
|
|
||||||
Einfachster Weg fuer einen neuen Rechner:
|
Python 3.14 ist fuer dieses Tool in Ordnung. Einfachster Weg fuer einen neuen Rechner:
|
||||||
|
|
||||||
1. Python fuer Windows von [python.org](https://www.python.org/downloads/windows/) installieren.
|
1. Python fuer Windows von [python.org](https://www.python.org/downloads/windows/) installieren.
|
||||||
2. Im Installer diese Optionen aktivieren:
|
2. Im Installer diese Optionen aktivieren:
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ set "SCRIPT=%~dp0pvd_mezzanine.py"
|
|||||||
set "PYTHON_EXE="
|
set "PYTHON_EXE="
|
||||||
set "PYTHON_ARGS="
|
set "PYTHON_ARGS="
|
||||||
|
|
||||||
for %%V in (313 312 311 310) do (
|
for %%V in (314 313 312 311 310) do (
|
||||||
if not defined PYTHON_EXE if exist "%LocalAppData%\Programs\Python\Python%%V\python.exe" (
|
if not defined PYTHON_EXE if exist "%LocalAppData%\Programs\Python\Python%%V\python.exe" (
|
||||||
set "PYTHON_EXE=%LocalAppData%\Programs\Python\Python%%V\python.exe"
|
set "PYTHON_EXE=%LocalAppData%\Programs\Python\Python%%V\python.exe"
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user