Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 290 for PIP (0.08 seconds)

  1. docs/zh/docs/index.md

    ### 不包含 `standard` 依赖 { #without-standard-dependencies }
    
    如果你不想包含这些 `standard` 可选依赖,可以使用 `pip install fastapi`,而不是 `pip install "fastapi[standard]"`。
    
    ### 不包含 `fastapi-cloud-cli` { #without-fastapi-cloud-cli }
    
    如果你想安装带有 standard 依赖但不包含 `fastapi-cloud-cli` 的 FastAPI,可以使用 `pip install "fastapi[standard-no-fastapi-cloud-cli]"`。
    
    ### 其他可选依赖 { #additional-optional-dependencies }
    
    还有一些你可能想安装的可选依赖。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 20.7K bytes
    - Click Count (0)
  2. docs/zh/docs/advanced/settings.md

    首先,确保你创建并激活了[虚拟环境](../virtual-environments.md),然后安装 `pydantic-settings` 包:
    
    <div class="termy">
    
    ```console
    $ pip install pydantic-settings
    ---> 100%
    ```
    
    </div>
    
    当你用以下方式安装 `all` 扩展时,它也会被一并安装:
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[all]"
    ---> 100%
    ```
    
    </div>
    
    ### 创建 `Settings` 对象 { #create-the-settings-object }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  3. docs/zh-hant/docs/deployment/manually.md

    例如,安裝 Uvicorn:
    
    <div class="termy">
    
    ```console
    $ pip install "uvicorn[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    其他 ASGI 伺服器的安裝流程也大致相同。
    
    /// tip
    
    加入 `standard` 會讓 Uvicorn 安裝並使用一些建議的額外相依套件。
    
    其中包含 `uvloop`,它是 `asyncio` 的高效能替代實作,可大幅提升並行效能。
    
    當你用 `pip install "fastapi[standard]"` 安裝 FastAPI 時,也會一併取得 `uvicorn[standard]`。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  4. docs/ja/docs/tutorial/request-forms-and-files.md

    /// info | 情報
    
    アップロードされたファイルやフォームデータを受信するには、まず[`python-multipart`](https://github.com/Kludex/python-multipart)をインストールします。
    
    [仮想環境](../virtual-environments.md)を作成し、それを有効化してから、例えば次のようにインストールしてください:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## `File`と`Form`のインポート { #import-file-and-form }
    
    {* ../../docs_src/request_forms_and_files/tutorial001_an_py310.py hl[3] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  5. docs/zh-hant/docs/index.md

    ### 不含 `standard` 依賴套件 { #without-standard-dependencies }
    
    如果你不想包含 `standard` 可選依賴,可以改用 `pip install fastapi`(而不是 `pip install "fastapi[standard]"`)。
    
    ### 不含 `fastapi-cloud-cli` { #without-fastapi-cloud-cli }
    
    如果你想安裝帶有 standard 依賴、但不包含 `fastapi-cloud-cli`,可以使用 `pip install "fastapi[standard-no-fastapi-cloud-cli]"`。
    
    ### 額外可選依賴套件 { #additional-optional-dependencies }
    
    有些額外依賴你可能也會想安裝。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 20.8K bytes
    - Click Count (0)
  6. docs/tr/docs/index.md

    `standard` opsiyonel bağımlılıklarını dahil etmek istemiyorsanız, `pip install fastapi` ile kurabilirsiniz.
    
    ### `fastapi-cloud-cli` Olmadan { #without-fastapi-cloud-cli }
    
    FastAPI'ı standard bağımlılıklarla ama `fastapi-cloud-cli` olmadan kurmak istiyorsanız, `pip install "fastapi[standard-no-fastapi-cloud-cli]"` ile yükleyebilirsiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 23.2K bytes
    - Click Count (0)
  7. docs/ja/docs/advanced/wsgi.md

    そのために `WSGIMiddleware` を使用して、Flask や Django などの WSGI アプリをラップできます。
    
    ## `WSGIMiddleware` の使用 { #using-wsgimiddleware }
    
    /// info | 情報
    
    これには `a2wsgi` のインストールが必要です。例: `pip install a2wsgi`。
    
    ///
    
    `a2wsgi` から `WSGIMiddleware` をインポートします。
    
    次に、そのミドルウェアで WSGI(例: Flask)アプリをラップします。
    
    そして、それをあるパスの下にマウントします。
    
    {* ../../docs_src/wsgi/tutorial001_py310.py hl[1,3,23] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  8. docs/zh/docs/tutorial/request-form-models.md

    你可以在 FastAPI 中使用 **Pydantic 模型**声明**表单字段**。
    
    /// 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:06:37 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/advanced/settings.md

    首先,請先建立你的[虛擬環境](../virtual-environments.md),啟用它,然後安裝 `pydantic-settings` 套件:
    
    <div class="termy">
    
    ```console
    $ pip install pydantic-settings
    ---> 100%
    ```
    
    </div>
    
    當你用 `all` extras 安裝時,它也會一併包含在內:
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[all]"
    ---> 100%
    ```
    
    </div>
    
    ### 建立 `Settings` 物件 { #create-the-settings-object }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  10. docs/ja/docs/tutorial/security/first-steps.md

    /// info | 情報
    
    [`python-multipart`](https://github.com/Kludex/python-multipart) パッケージは、`pip install "fastapi[standard]"` コマンドを実行すると **FastAPI** と一緒に自動的にインストールされます。
    
    しかし、`pip install fastapi` コマンドを使用する場合、`python-multipart` パッケージはデフォルトでは含まれません。
    
    手動でインストールするには、[仮想環境](../../virtual-environments.md)を作成して有効化し、次のコマンドでインストールしてください:
    
    ```console
    $ pip install python-multipart
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 10.8K bytes
    - Click Count (0)
Back to Top