Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 225 for PIP (0.02 sec)

  1. .github/workflows/notify-translations.yml

            with:
              version: "0.4.15"
              enable-cache: true
              cache-dependency-glob: |
                requirements**.txt
                pyproject.toml
          - name: Install Dependencies
            run: uv pip install -r requirements-github-actions.txt
          # Allow debugging with tmate
          - name: Setup tmate session
            uses: mxschmitt/action-tmate@v3
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Aug 15 21:44:06 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. docs/pt/docs/deployment/manually.md

    Por exemplo, para instalar o Uvicorn:
    
    <div class="termy">
    
    ```console
    $ pip install "uvicorn[standard]"
    
    ---> 100%
    ```
    
    </div>
    
    Um processo semelhante se aplicaria a qualquer outro programa de servidor ASGI.
    
    /// tip | Dica
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Jan 09 20:41:07 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/request-forms-and-files.md

    /// info
    
    Um hochgeladene Dateien und/oder Formulardaten zu empfangen, installieren Sie zuerst <a href="https://andrew-d.github.io/python-multipart/" class="external-link" target="_blank">`python-multipart`</a>.
    
    Z. B. `pip install python-multipart`.
    
    ///
    
    ## `File` und `Form` importieren
    
    {* ../../docs_src/request_forms_and_files/tutorial001_an_py39.py hl[3] *}
    
    ## `File` und `Form`-Parameter definieren
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/testing.md

    ## โš™๏ธ `TestClient`
    
    /// info
    
    โš™๏ธ `TestClient`, ๐Ÿฅ‡ โŽ <a href="https://www.python-httpx.org" class="external-link" target="_blank">`httpx`</a>.
    
    ๐Ÿคถ โ“‚. `pip install httpx`.
    
    ///
    
    ๐Ÿ—„ `TestClient`.
    
    โœ `TestClient` ๐Ÿšถโ€โ™€๏ธ ๐Ÿ‘† **FastAPI** ๐Ÿˆธ โšซ๏ธ.
    
    โœ ๐Ÿ”ข โฎ๏ธ ๐Ÿ“› ๐Ÿ‘ˆ โ–ถ๏ธ โฎ๏ธ `test_` (๐Ÿ‘‰ ๐Ÿฉ `pytest` ๐Ÿ›).
    
    โš™๏ธ `TestClient` ๐ŸŽš ๐ŸŽ ๐ŸŒŒ ๐Ÿ‘† โฎ๏ธ `httpx`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/testing.md

    Certifique-se de criar um [ambiente virtual](../virtual-environments.md){.internal-link target=_blank}, ativรก-lo e instalรก-lo, por exemplo:
    
    ```console
    $ pip install httpx
    ```
    
    ///
    
    Importe `TestClient`.
    
    Crie um `TestClient` passando seu aplicativo **FastAPI** para ele.
    
    Crie funรงรตes com um nome que comece com `test_` (essa รฉ a convenรงรฃo padrรฃo do `pytest`).
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/request-forms-and-files.md

    ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ”ฌ ๐Ÿ“ &amp; ๐Ÿ“จ ๐Ÿ‘ ๐ŸŽ ๐Ÿ•ฐ โš™๏ธ `File` &amp; `Form`.
    
    /// info
    
    ๐Ÿ“จ ๐Ÿ“‚ ๐Ÿ“ &amp; /โš–๏ธ ๐Ÿ“จ ๐Ÿ“Š, ๐Ÿฅ‡ โŽ <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
    ๐Ÿคถ โ“‚. `pip install python-multipart`.
    
    ///
    
    ## ๐Ÿ—„ `File` &amp; `Form`
    
    {* ../../docs_src/request_forms_and_files/tutorial001.py hl[1] *}
    
    ## ๐Ÿ”ฌ `File` &amp; `Form` ๐Ÿ”ข
    
    โœ ๐Ÿ“ &amp; ๐Ÿ“จ ๐Ÿ”ข ๐ŸŽ ๐ŸŒŒ ๐Ÿ‘† ๐Ÿ”œ `Body` โš–๏ธ `Query`:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/request-forms-and-files.md

    Make sure you create a [virtual environment](../virtual-environments.md){.internal-link target=_blank}, activate it, and then install it, for example:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## Import `File` and `Form` { #import-file-and-form }
    
    {* ../../docs_src/request_forms_and_files/tutorial001_an_py39.py hl[3] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  8. docs/ko/docs/deployment/docker.md

    4. ์š”๊ตฌ ์กฐ๊ฑด ํŒŒ์ผ์— ์žˆ๋Š” ํŒจํ‚ค์ง€ ์ข…์†์„ฑ์„ ์„ค์น˜ํ•ฉ๋‹ˆ๋‹ค.
    
        `--no-cache-dir` ์˜ต์…˜์€ `pip`์—๊ฒŒ ๋‹ค์šด๋กœ๋“œํ•œ ํŒจํ‚ค์ง€๋“ค์„ ๋กœ์ปฌ ํ™˜๊ฒฝ์— ์ €์žฅํ•˜์ง€ ์•Š๋„๋ก ์ „๋‹ฌํ•ฉ๋‹ˆ๋‹ค. ์ด๋Š” ๋งˆ์น˜ ๊ฐ™์€ ํŒจํ‚ค์ง€๋ฅผ ์„ค์น˜ํ•˜๊ธฐ ์œ„ํ•ด ์˜ค์ง `pip`๋งŒ ๋‹ค์‹œ ์‹คํ–‰ํ•˜๋ฉด ๋  ๊ฒƒ ๊ฐ™์ง€๋งŒ, ์ปจํ…Œ์ด๋„ˆ๋กœ ์ž‘์—…ํ•˜๋Š” ๊ฒฝ์šฐ ๊ทธ๋ ‡์ง€๋Š” ์•Š์Šต๋‹ˆ๋‹ค.
    
        /// note | ๋…ธํŠธ
    
        `--no-cache-dir` ๋Š” ์˜ค์ง `pip`์™€ ๊ด€๋ จ๋˜์–ด ์žˆ์œผ๋ฉฐ, ๋„์ปค๋‚˜ ์ปจํ…Œ์ด๋„ˆ์™€๋Š” ๋ฌด๊ด€ํ•ฉ๋‹ˆ๋‹ค.
    
        ///
    
        `--upgrade` ์˜ต์…˜์€ `pip`์—๊ฒŒ ์„ค์น˜๋œ ํŒจํ‚ค์ง€๋“ค์„ ์—…๋ฐ์ดํŠธํ•˜๋„๋ก ํ•ฉ๋‹ˆ๋‹ค.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. .github/dependabot.yml

    version: 2
    updates:
      # GitHub Actions
      - package-ecosystem: "github-actions"
        directory: "/"
        schedule:
          interval: "daily"
        commit-message:
          prefix: โฌ†
      # Python
      - package-ecosystem: "pip"
        directory: "/"
        schedule:
          interval: "monthly"
        commit-message:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Apr 19 00:41:55 UTC 2024
    - 311 bytes
    - Viewed (0)
  10. ci/official/containers/ml_build/builder.requirements.txt

    # For wheel verification, and uploading
    auditwheel ~= 6.1.0
    twine ~= 6.1.0
    id
    urllib3
    requests
    
    # For JAX
    build ~= 1.2.2
    # uv is faster than pip for installing Python packages.
    uv ~= 0.5.30
    
    # For running wheel verification script
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri May 02 16:02:16 UTC 2025
    - 253 bytes
    - Viewed (0)
Back to top