Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 521 - 530 of 688 for Install (0.05 seconds)

  1. docs/uk/docs/deployment/docker.md

    ///
    
    <details>
    <summary>Попередній перегляд Dockerfile 👀</summary>
    
    ```Dockerfile
    FROM python:3.14
    
    WORKDIR /code
    
    COPY ./requirements.txt /code/requirements.txt
    
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    COPY ./app /code/app
    
    CMD ["fastapi", "run", "app/main.py", "--port", "80"]
    
    # Якщо запускаєте за представником на кшталт Nginx або Traefik, додайте --proxy-headers
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 44.2K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/tutorial/request-form-models.md

    你可以使用 **Pydantic 模型** 在 FastAPI 中宣告 **表單欄位**。
    
    /// info | 說明
    
    要使用表單,首先安裝 [`python-multipart`](https://github.com/Kludex/python-multipart)。
    
    請先建立[虛擬環境](../virtual-environments.md)、啟用後再安裝,例如:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    /// note | 注意
    
    此功能自 FastAPI 版本 `0.113.0` 起支援。🤓
    
    ///
    
    ## 針對表單的 Pydantic 模型 { #pydantic-models-for-forms }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 2K bytes
    - Click Count (0)
  3. docs/tr/docs/tutorial/request-forms.md

    Bir [virtual environment](../virtual-environments.md) oluşturduğunuzdan, onu etkinleştirdiğinizden emin olun ve ardından örneğin şöyle kurun:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## `Form`'u Import Edin { #import-form }
    
    `Form`'u `fastapi`'den import edin:
    
    {* ../../docs_src/request_forms/tutorial001_an_py310.py hl[3] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  4. CHANGELOG/CHANGELOG-1.2.md

      * Multiple fixes to avoid hitting AWS rate limits, and to throttle if we do
      * Support for the EC2 Container Registry (currently in us-east-1 only)
    
    With kube-up:
    
      * Automatically install updates on boot & reboot
      * Use optimized image based on Jessie by default
      * Add support for Ubuntu Wily
      * Master is configured with automatic restart-on-failure, via CloudWatch
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Fri Dec 04 06:36:19 GMT 2020
    - 41.4K bytes
    - Click Count (0)
  5. docs/zh/docs/deployment/docker.md

    ///
    
    <details>
    <summary>Dockerfile 预览 👀</summary>
    
    ```Dockerfile
    FROM python:3.14
    
    WORKDIR /code
    
    COPY ./requirements.txt /code/requirements.txt
    
    RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
    
    COPY ./app /code/app
    
    CMD ["fastapi", "run", "app/main.py", "--port", "80"]
    
    # 如果在 Nginx 或 Traefik 等代理后运行,请添加 --proxy-headers
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 24.8K bytes
    - Click Count (0)
  6. docs/de/docs/tutorial/request-forms.md

    Erstellen Sie unbedingt eine [virtuelle Umgebung](../virtual-environments.md), aktivieren Sie diese und installieren Sie dann das Paket, zum Beispiel:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## `Form` importieren { #import-form }
    
    Importieren Sie `Form` von `fastapi`:
    
    {* ../../docs_src/request_forms/tutorial001_an_py310.py hl[3] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  7. docs/pt/docs/tutorial/response-model.md

    /// info | Informação
    
    Para usar `EmailStr`, primeiro instale [`email-validator`](https://github.com/JoshData/python-email-validator).
    
    Certifique-se de criar um [ambiente virtual](../virtual-environments.md), ative-o e então instale-o, por exemplo:
    
    ```console
    $ pip install email-validator
    ```
    
    ou com:
    
    ```console
    $ pip install "pydantic[email]"
    ```
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 16.7K bytes
    - Click Count (0)
  8. cmd/testdata/xl-meta-merge.zip

    /erasure-coding.html#) for more complete documentation. ## Install from Source Use the following commands to compile and run a standalone MinIO server from source. Source installation is only intended for developers and advanced users. If you do not have a working Golang environment, please follow [How to install Golang](https://golang.org/doc/install). Minimum version required is [go1.21](https://golang.org/dl/#stable) ```sh go install github.com/minio/minio@latest ``` The MinIO deployment starts...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Mar 08 17:50:48 GMT 2024
    - 30.2K bytes
    - Click Count (0)
  9. docs/tr/docs/fastapi-cli.md

    FastAPI'yi kurduğunuzda (ör. `pip install "fastapi[standard]"`), terminalde çalıştırabileceğiniz bir komut satırı programı birlikte gelir.
    
    FastAPI uygulamanızı geliştirme için çalıştırmak üzere `fastapi dev` komutunu kullanabilirsiniz:
    
    <div class="termy">
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  10. docs/ja/docs/tutorial/testing.md

    /// info
    
    `TestClient` を使用するには、まず [`httpx`](https://www.python-httpx.org) をインストールします。
    
    [仮想環境](../virtual-environments.md) を作成し、それを有効化してから、例えば以下のようにインストールしてください:
    
    ```console
    $ pip install httpx
    ```
    
    ///
    
    `TestClient` をインポートします。
    
    `TestClient` を作成し、**FastAPI** に渡します。
    
    `test_` から始まる名前の関数を作成します (これは `pytest` の標準的なコンベンションです)。
    
    `httpx` と同じ様に `TestClient` オブジェクトを使用します。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 7.1K bytes
    - Click Count (0)
Back to Top