Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 439 for Install (0.09 sec)

  1. docs/em/docs/deployment/server-workers.md

    & โคด๏ธ ๐Ÿ-๐Ÿ”— **Uvicorn ๐Ÿ‘จโ€๐Ÿญ** ๐ŸŽ“ ๐Ÿ”œ ๐Ÿˆš ๐Ÿญ ๐Ÿ“Š ๐Ÿ“จ ๐Ÿ ๐Ÿ”ซ ๐Ÿฉ FastAPI โš™๏ธ โšซ๏ธ.
    
    ## โŽ ๐Ÿ & Uvicorn
    
    <div class="termy">
    
    ```console
    $ pip install "uvicorn[standard]" gunicorn
    
    ---> 100%
    ```
    
    </div>
    
    ๐Ÿ‘ˆ ๐Ÿ”œ โŽ ๐Ÿ‘ฏโ€โ™‚๏ธ Uvicorn โฎ๏ธ `standard` โž• ๐Ÿ“ฆ (๐Ÿคš โ†• ๐ŸŽญ) &amp; ๐Ÿ.
    
    ## ๐Ÿƒ ๐Ÿ โฎ๏ธ Uvicorn ๐Ÿ‘จโ€๐Ÿญ
    
    โคด๏ธ ๐Ÿ‘† ๐Ÿ’ช ๐Ÿƒ ๐Ÿ โฎ๏ธ:
    
    <div class="termy">
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. docs/fr/docs/deployment/docker.md

    Dans ce cas, votre `Dockerfile` pourrait ressembler ร  ceciย :
    
    ```Dockerfile
    FROM python:3.7
    
    RUN pip install fastapi uvicorn
    
    EXPOSE 80
    
    COPY ./app /app
    
    CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"]
    ```
    
    ## Crรฉer le code **FastAPI**.
    
    * Crรฉer un rรฉpertoire `app` et y entrer.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. ci/official/containers/ml_build/builder.devtoolset/build_devtoolset.sh

          --with-default-libstdcxx-abi=${LIBSTDCXX_ABI} \
          --with-gcc-major-version-only \
          --with-linker-hash-style="gnu" \
          --with-tune="generic" \
          && \
        make -j 42 && \
        make install
    
    
    # Create the devtoolset libstdc++ linkerscript that links dynamically against
    # the system libstdc++ 4.4 and provides all other symbols statically.
    case "${VERSION}" in
    devtoolset-7)
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue Sep 24 20:45:58 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/it/admin/PluginTests.java

                    available.stream().filter(map -> !map.get("name").toString().startsWith("fess-")).toList().get(0);
            final Artifact target = getArtifactFromMap(targetMap);
    
            // Install
            {
                checkPostMethod(targetMap, getInstallEndpointSuffix()).then().body("response.status", equalTo(0));
    
                boolean done = false;
                for (int i = 0; i < 60; i++) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  5. docs/pt/docs/fastapi-cli.md

    # FastAPI CLI
    
    **FastAPI CLI** รฉ uma interface por linha de comando do `fastapi` que vocรช pode usar para rodar sua app FastAPI, gerenciar seu projeto FastAPI e mais.
    
    Quando vocรช instala o FastAPI (ex.: com `pip install fastapi`), isso inclui um pacote chamado `fastapi-cli`. Esse pacote disponibiliza o comando `fastapi` no terminal.
    
    Para rodar seu app FastAPI em desenvolvimento, vocรช pode usar o comando `fastapi dev`:
    
    <div class="termy">
    
    ```console
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. docs/zh-hant/docs/index.md

    ## ๅฎ‰่ฃ
    
    <div class="termy">
    
    ```console
    $ pip install fastapi
    
    ---> 100%
    ```
    
    </div>
    
    ไฝ ๅŒๆ™‚ไนŸๆœƒ้œ€่ฆ ASGI ไผบๆœๅ™จ็”จๆ–ผ็”Ÿ็”ข็’ฐๅขƒ๏ผŒๅƒๆ˜ฏ <a href="https://www.uvicorn.org" class="external-link" target="_blank">Uvicorn</a> ๆˆ– <a href="https://github.com/pgjones/hypercorn" class="external-link" target="_blank">Hypercorn</a>ใ€‚
    
    <div class="termy">
    
    ```console
    $ pip install "uvicorn[standard]"
    
    ---> 100%
    ```
    
    </div>
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  7. docs/fr/docs/index.md

    * <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> pour les parties donnรฉes.
    
    ## Installation
    
    <div class="termy">
    
    ```console
    $ pip install fastapi
    
    ---> 100%
    ```
    
    </div>
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 22K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/list.md

    ## Cluster Replication Metrics
    
    Metrics marked as ``Site Replication Only`` only populate on deployments with [Site Replication](https://docs.min.io/community/minio-object-store/operations/install-deploy-manage/multi-site-replication.html) configurations.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 43.4K bytes
    - Viewed (0)
  9. docs/ko/docs/index.md

    ## ์„ค์น˜
    
    <div class="termy">
    
    ```console
    $ pip install fastapi
    
    ---> 100%
    ```
    
    </div>
    
    ํ”„๋กœ๋•์…˜์„ ์œ„ํ•ด <a href="http://www.uvicorn.org" class="external-link" target="_blank">Uvicorn</a> ๋˜๋Š” <a href="https://github.com/pgjones/hypercorn" class="external-link" target="_blank">Hypercorn</a>๊ณผ ๊ฐ™์€ ASGI ์„œ๋ฒ„๋„ ํ•„์š”ํ•  ๊ฒ๋‹ˆ๋‹ค.
    
    <div class="termy">
    
    ```console
    $ pip install "uvicorn[standard]"
    
    ---> 100%
    ```
    
    </div>
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  10. docs/ja/docs/tutorial/request-forms.md

    # ใƒ•ใ‚ฉใƒผใƒ ใƒ‡ใƒผใ‚ฟ
    
    JSONใฎไปฃใ‚ใ‚Šใซใƒ•ใ‚ฃใƒผใƒซใƒ‰ใ‚’ๅ—ใ‘ๅ–ใ‚‹ๅ ดๅˆใฏใ€`Form`ใ‚’ไฝฟ็”จใ—ใพใ™ใ€‚
    
    /// info | ๆƒ…ๅ ฑ
    
    ใƒ•ใ‚ฉใƒผใƒ ใ‚’ไฝฟใ†ใŸใ‚ใซใฏใ€ใพใš<a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>ใ‚’ใ‚คใƒณใ‚นใƒˆใƒผใƒซใ—ใพใ™ใ€‚
    
    ใŸใจใˆใฐใ€`pip install python-multipart`ใฎใ‚ˆใ†ใซใ€‚
    
    ///
    
    ## `Form`ใฎใ‚คใƒณใƒใƒผใƒˆ
    
    `fastapi`ใ‹ใ‚‰`Form`ใ‚’ใ‚คใƒณใƒใƒผใƒˆใ—ใพใ™:
    
    {* ../../docs_src/request_forms/tutorial001.py hl[1] *}
    
    ## `Form`ใฎใƒ‘ใƒฉใƒกใƒผใ‚ฟใฎๅฎš็พฉ
    
    `Body`ใ‚„`Query`ใฎๅ ดๅˆใจๅŒใ˜ใ‚ˆใ†ใซใƒ•ใ‚ฉใƒผใƒ ใƒ‘ใƒฉใƒกใƒผใ‚ฟใ‚’ไฝœๆˆใ—ใพใ™:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top