- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 678 for Pythons (0.04 sec)
-
ci/official/containers/ml_build_arm64/setup.python.sh
cat >pythons.txt <<EOF $VERSION $VERSION-dev $VERSION-venv EOF else cat >pythons.txt <<EOF $VERSION $VERSION-dev $VERSION-venv EOF fi if [[ ${VERSION} == "python3.14" ]]; then if [[ ! -d Python-3.14.0rc1 ]]; then apt update && apt install -y libssl-dev zlib1g-dev libbz2-dev libreadline-dev libncurses5-dev libffi-dev liblzma-dev wget https://www.python.org/ftp/python/3.14.0/Python-3.14.0rc1.tar.xz
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Aug 01 19:14:43 UTC 2025 - 3.8K bytes - Viewed (0) -
ci/official/containers/ml_build/setup.python.sh
# # setup.python.sh: Install a specific Python version and packages for it. # Usage: setup.python.sh <pyversion> <requirements.txt> set -xe source ~/.bashrc VERSION=$1 REQUIREMENTS=$2 # Install Python packages for this container's version if [[ ${VERSION} == "python3.13-nogil" || ${VERSION} == "python3.14-nogil" ]]; then cat >pythons.txt <<EOF $VERSION EOF
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Aug 01 02:44:57 UTC 2025 - 2.8K bytes - Viewed (0) -
docs/de/docs/python-types.md
Um diese Typen und die inneren Typen zu deklarieren, können Sie Pythons Standardmodul `typing` verwenden. Es existiert speziell für die Unterstützung dieser Typhinweise. #### Neuere Python-Versionen Die Syntax, welche `typing` verwendet, ist **kompatibel** mit allen Versionen, von Python 3.6 aufwärts zu den neuesten, inklusive Python 3.9, Python 3.10, usw.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 18.9K bytes - Viewed (1) -
docs/de/docs/tutorial/encoder.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 1.8K bytes - Viewed (0) -
docs/de/docs/tutorial/extra-models.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.8K bytes - Viewed (0) -
docs/de/docs/tutorial/response-status-code.md
/// Dem `status_code`-Parameter wird eine Zahl mit dem HTTP-Statuscode übergeben. /// info Alternativ kann `status_code` auch ein `IntEnum` erhalten, so wie Pythons <a href="https://docs.python.org/3/library/http.html#http.HTTPStatus" class="external-link" target="_blank">`http.HTTPStatus`</a>. /// Das wird: * Diesen Statuscode mit der Response zurücksenden.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 4.6K bytes - Viewed (0) -
docs/de/docs/tutorial/body-nested-models.md
* Wenn Sie eine Python-Version kleiner als 3.9 verwenden, importieren Sie das Äquivalent zum entsprechenden Typ vom `typing`-Modul * Überreichen Sie den/die inneren Typ(en) von eckigen Klammern umschlossen, `[` und `]`, als „Typ-Parameter“ In Python 3.9 wäre das: ```Python my_list: list[str] ``` Und in Python-Versionen vor 3.9: ```Python from typing import List my_list: List[str] ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.8K bytes - Viewed (0) -
docs/de/docs/advanced/settings.md
``` </div> //// ### Umgebungsvariablen mit Python auslesen Sie können Umgebungsvariablen auch außerhalb von Python im Terminal (oder mit einer anderen Methode) erstellen und diese dann mit Python auslesen. Sie könnten zum Beispiel eine Datei `main.py` haben mit: ```Python hl_lines="3" import os name = os.getenv("MY_NAME", "World") print(f"Hello {name} from Python") ``` /// tip | Tipp
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 16.4K bytes - Viewed (0) -
ci/devinfra/docker/windows2022/Dockerfile
Install-Python -version $v.version -prependPath $v.prependPath; \ }; \ Write-Host 'Python installations complete.'; # Add a python3 symlink for the Python in PATH. # It's not feasible to add one for each version, as on Windows, # Python uses PATH and the binary's (symlink's) location, to launch itself. RUN C:\tools\msys64\usr\bin\bash.exe -lc 'ln -s /c/Python3.13/python.exe /usr/bin/python3';
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Jan 13 18:59:55 UTC 2025 - 10.3K bytes - Viewed (0) -
docs/de/docs/advanced/custom-response.md
/// warning | Achtung `ujson` ist bei der Behandlung einiger Sonderfälle weniger sorgfältig als Pythons eingebaute Implementierung. /// {* ../../docs_src/custom_response/tutorial001.py hl[2,7] *} /// tip | Tipp Möglicherweise ist `ORJSONResponse` eine schnellere Alternative. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 13.1K bytes - Viewed (0)