- Sort Score
- Num 10 results
- Language All
Results 401 - 410 of 688 for Install (0.06 seconds)
-
docs/ja/docs/tutorial/handling-errors.md
例えば、いくつかのタイプのセキュリティのために、HTTPエラーにカスタムヘッダを追加できると便利な状況がいくつかあります。 おそらくコードの中で直接使用する必要はないでしょう。 しかし、高度なシナリオのために必要な場合には、カスタムヘッダーを追加することができます: {* ../../docs_src/handling_errors/tutorial002_py310.py hl[14] *} ## カスタム例外ハンドラのインストール { #install-custom-exception-handlers } カスタム例外ハンドラは[Starletteと同じ例外ユーティリティ](https://www.starlette.dev/exceptions/)を使用して追加することができます。 あなた(または使用しているライブラリ)が`raise`するかもしれないカスタム例外`UnicornException`があるとしましょう。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 11.2K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/dependencies/dependencies-with-yield.md
但如果你需要,它就在這裡。🤓 /// {* ../../docs_src/dependencies/tutorial008b_an_py310.py hl[18:22,31] *} 如果你想攔截例外並據此回傳自訂回應,請建立一個[自訂例外處理器](../handling-errors.md#install-custom-exception-handlers)。 ## 含 `yield` 與 `except` 的相依 { #dependencies-with-yield-and-except } 如果你在含 `yield` 的相依中用 `except` 攔截了例外,且沒有再次拋出它(或拋出新的例外),FastAPI 將無法察覺有例外發生,就像在一般的 Python 中一樣:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 11.9K bytes - Click Count (0) -
RELEASE.md
no longer include NCCL in the binary install. TensorFlow usage with multiple GPUs and NCCL requires upgrade to [NCCL 2.2](https://developer.nvidia.com/nccl). See updated install guides: [TensorFlow GPU support](https://www.tensorflow.org/install/gpu) and [Build TensorFlow from source](https://www.tensorflow.org/install/source).Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Mon Mar 30 18:31:38 GMT 2026 - 746.5K bytes - Click Count (3) -
docs/en/docs/release-notes.md
Now `fastapi` doesn't include those standard dependencies unless you install with `pip install "fastapi[standard]"`. Before, you would install `pip install fastapi`, now you should include the `standard` optional dependencies (unless you want to exclude one of those): `pip install "fastapi[standard]"`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Apr 03 12:07:04 GMT 2026 - 631K bytes - Click Count (0) -
CONTRIBUTING.md
usage on Unix. We support development in IntelliJ versions IntelliJ 2020.1 and onwards and Eclipse 2020-3 and onwards. [Docker](https://docs.docker.com/install/) is required for building some Elasticsearch artifacts and executing certain test suites. You can run Elasticsearch without building all the artifacts with: ./gradlew :runCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 01 07:32:01 GMT 2021 - 36.5K bytes - Click Count (0) -
docs/ja/docs/tutorial/dependencies/dependencies-with-yield.md
ただし必要であれば使えます。 🤓 /// {* ../../docs_src/dependencies/tutorial008b_an_py310.py hl[18:22,31] *} 例外をキャッチして、それに基づいてカスタムレスポンスを作成したい場合は、[カスタム例外ハンドラ](../handling-errors.md#install-custom-exception-handlers)を作成してください。 ## `yield`と`except`を持つ依存関係 { #dependencies-with-yield-and-except } `yield`を持つ依存関係で`except`を使って例外をキャッチし、それを再度raiseしない(または新しい例外をraiseしない)場合、通常のPythonと同じように、FastAPIは例外があったことに気づけません:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 15.4K bytes - Click Count (0) -
module.xml
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 4.6K bytes - Click Count (0) -
plugin.xml
<property name="maven.release.repo.url" value="https://repo1.maven.org/maven2" /> <target name="install.plugins"> <mkdir dir="${target.dir}" /> <delete dir="${plugins.dir}" /> <mkdir dir="${plugins.dir}" /> <!-- analysis-extension --> <antcall target="install.plugin"> <param name="repo.url" value="${maven.release.repo.url}" /> <param name="plugin.groupId" value="org/codelibs/opensearch" />
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Feb 12 06:33:24 GMT 2026 - 3.5K bytes - Click Count (0) -
docs/fr/docs/virtual-environments.md
<div class="termy"> ```console $ pip install "fastapi[standard]" ---> 100% ``` </div> //// //// tab | `uv` Si vous avez [`uv`](https://github.com/astral-sh/uv) : <div class="termy"> ```console $ uv pip install "fastapi[standard]" ---> 100% ``` </div> //// ### Installer depuis `requirements.txt` { #install-from-requirements-txt }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 24.5K bytes - Click Count (0) -
docs/ja/docs/_llm-test.md
プロンプト設計者は、ストレートクォートをタイポグラフィックな引用符に変換するかどうかを選べます。そのままでも問題ありません。 例として `docs/de/llm-prompt.md` の「### Quotes」の節を参照してください。 //// ## コードスニペット内の引用 { #quotes-in-code-snippets } //// tab | テスト `pip install "foo[bar]"` コードスニペット中の文字列リテラルの例: `"this"`, `'that'`. 難しい文字列リテラルの例: `f"I like {'oranges' if orange else "apples"}"`Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 13.5K bytes - Click Count (0)