- Sort Score
- Result 10 results
- Languages All
Results 491 - 500 of 545 for instalar (0.08 sec)
-
docs/ja/docs/contributing.md
これにより、そのパッケージによってインストールされたターミナルのプログラム を使用する場合、ローカル環境のものを使用し、グローバルにインストールされたものは使用されなくなります。 /// ### pip 上記のように環境を有効化した後: <div class="termy"> ```console $ pip install -r requirements.txt ---> 100% ``` </div> これで、すべての依存関係とFastAPIを、ローカル環境にインストールします。 #### ローカル環境でFastAPIを使う FastAPIをインポートして使用するPythonファイルを作成し、ローカル環境で実行すると、ローカルのFastAPIソースコードが使用されます。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 16.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.3K bytes - Viewed (0) -
architecture/networking/pilot.md
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Feb 07 17:53:24 UTC 2024 - 19.1K bytes - Viewed (0) -
docs/ko/docs/deployment/server-workers.md
그리고 나서 구니콘과 호환되는 **유비콘 워커** 클래스는 구니콘이 보낸 데이터를 FastAPI에서 사용하기 위한 ASGI 표준으로 변환하는 일을 담당합니다. ## 구니콘과 유비콘 설치하기 <div class="termy"> ```console $ pip install "uvicorn[standard]" gunicorn ---> 100% ``` </div> 이 명령어는 유비콘 `standard` 추가 패키지(좋은 성능을 위한)와 구니콘을 설치할 것입니다. ## 구니콘을 유비콘 워커와 함께 실행하기 설치 후 구니콘 실행하기: <div class="termy"> ```console
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 10.2K bytes - Viewed (0) -
.github/workflows/build.yml
steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 - name: Install Old JDK 8 uses: actions/setup-java@v4 with: distribution: 'zulu' java-version: 8.0.242 - name: Configure JDK uses: actions/setup-java@v4 with:
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Aug 17 10:05:29 UTC 2024 - 17.2K bytes - Viewed (0) -
docs/zh/docs/advanced/generate-clients.md
OpenAPI中所包含的模型里有相同的信息可以用于 **生成客户端代码**。 ### 生成一个TypeScript 客户端 现在我们有了带有模型的应用,我们可以为前端生成客户端代码。 #### 安装 `openapi-ts` 您可以使用以下工具在前端代码中安装 `openapi-ts`: <div class="termy"> ```console $ npm install @hey-api/openapi-ts --save-dev ---> 100% ``` </div> #### 生成客户端代码 要生成客户端代码,您可以使用现在将要安装的命令行应用程序 `openapi-ts`。 因为它安装在本地项目中,所以您可能无法直接使用此命令,但您可以将其放在 `package.json` 文件中。 它可能看起来是这样的:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# ------ online.help.base.link=https://fess.codelibs.org/{lang}/{version}/admin/ online.help.installation=https://fess.codelibs.org/{lang}/{version}/install/install.html online.help.eol=https://fess.codelibs.org/{lang}/eol.html online.help.name.failureurl=failureurl online.help.name.elevateword=elevateword online.help.name.reqheader=reqheader
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Oct 01 14:13:38 UTC 2024 - 30.9K bytes - Viewed (0) -
misc/go_android_exec/main.go
// and recreate GOROOT. if err := adb("exec-out", "rm", "-rf", deviceRoot); err != nil { return err } // Build Go for Android. cmd = exec.Command(goTool, "install", "cmd") out, err = cmd.CombinedOutput() if err != nil { if len(bytes.TrimSpace(out)) > 0 { log.Printf("\n%s", out) } return fmt.Errorf("%v: %w", cmd, err) }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Aug 21 17:46:57 UTC 2023 - 15.3K bytes - Viewed (0) -
docs/ja/docs/tutorial/security/first-steps.md
{!../../docs_src/security/tutorial001.py!} ``` ## 実行 /// info | "情報" まず<a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>をインストールします。 例えば、`pip install python-multipart`。 これは、**OAuth2**が `ユーザー名` や `パスワード` を送信するために、「フォームデータ」を使うからです。 /// 例を実行します: <div class="termy"> ```console $ uvicorn main:app --reload
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.5K bytes - Viewed (0) -
docs/pt/docs/python-types.md
{!> ../../docs_src/python_types/tutorial013_py39.py!} ``` //// //// tab | Python 3.8+ Em versões abaixo do Python 3.9, você importa `Annotated` de `typing_extensions`. Ele já estará instalado com o **FastAPI**. ```Python hl_lines="1 4" {!> ../../docs_src/python_types/tutorial013.py!} ``` ////
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 15 12:32:27 UTC 2024 - 18K bytes - Viewed (0)