Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 223 for pip (0.03 seconds)

  1. .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:
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Apr 19 00:41:55 GMT 2024
    - 311 bytes
    - Click Count (0)
  2. docs/pt/docs/tutorial/security/first-steps.md

    Entretanto, se você usar o comando `pip install fastapi`, o pacote `python-multipart` não é incluído por padrão.
    
    Para instalá-lo manualmente, certifique-se de criar um [ambiente virtual](../../virtual-environments.md){.internal-link target=_blank}, ativá-lo e então instalá-lo com:
    
    ```console
    $ pip install python-multipart
    ```
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Nov 12 16:23:57 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  3. docs/es/docs/tutorial/security/first-steps.md

    Sin embargo, si usas el comando `pip install fastapi`, el paquete `python-multipart` no se incluye por defecto.
    
    Para instalarlo manualmente, asegúrate de crear un [entorno virtual](../../virtual-environments.md){.internal-link target=_blank}, activarlo, y luego instalarlo con:
    
    ```console
    $ pip install python-multipart
    ```
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Dec 16 16:33:45 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  4. 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 XLA
    pyyaml
    
    # For JAX
    build ~= 1.2.2
    # uv is faster than pip for installing Python packages.
    uv ~= 0.5.30
    
    # For running wheel verification script
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Thu Oct 30 20:25:44 GMT 2025
    - 271 bytes
    - Click Count (0)
  5. deploy_website.sh

    cp CHANGELOG.md docs/changelogs/changelog.md
    cp CONTRIBUTING.md docs/contribute/contributing.md
    
    # Build the site and push the new files up to GitHub
    python3 -m venv venv
    source venv/bin/activate
    pip install mkdocs-material mkdocs-redirects
    mkdocs gh-deploy
    
    # Restore Javadocs from 1.x, 2.x, and 3.x.
    git checkout gh-pages
    git cherry-pick bb229b9dcc9a21a73edbf8d936bea88f52e0a3ff
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Mon Nov 20 15:26:12 GMT 2023
    - 1.2K bytes
    - Click Count (0)
  6. docs/uk/docs/tutorial/request-forms-and-files.md

    Переконайтеся, що Ви створили [віртуальне середовище](../virtual-environments.md){.internal-link target=_blank}, активували його, а потім встановили бібліотеку, наприклад:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## Імпорт `File` та `Form`
    
    {* ../../docs_src/request_forms_and_files/tutorial001_an_py39.py hl[3] *}
    
    ## Оголошення параметрів `File` та `Form`
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Thu Feb 20 14:13:44 GMT 2025
    - 2.2K bytes
    - Click Count (0)
  7. docs/ru/docs/tutorial/request-forms-and-files.md

    Убедитесь, что вы создали [виртуальное окружение](../virtual-environments.md){.internal-link target=_blank}, активировали его, а затем установили пакет, например:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## Импортируйте `File` и `Form` { #import-file-and-form }
    
    {* ../../docs_src/request_forms_and_files/tutorial001_an_py39.py hl[3] *}
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Sep 30 11:24:39 GMT 2025
    - 2.2K bytes
    - Click Count (0)
  8. .github/workflows/people.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
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Nov 21 13:03:21 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  9. .github/workflows/smokeshow.yml

              python-version: '3.13'
          - name: Setup uv
            uses: astral-sh/setup-uv@v7
            with:
              cache-dependency-glob: |
                requirements**.txt
                pyproject.toml
          - run: uv pip install -r requirements-github-actions.txt
          - uses: actions/download-artifact@v6
            with:
              name: coverage-html
              path: htmlcov
              github-token: ${{ secrets.GITHUB_TOKEN }}
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Dec 16 17:36:42 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  10. docs/ru/docs/advanced/settings.md

    <div class="termy">
    
    ```console
    $ pip install pydantic-settings
    ---> 100%
    ```
    
    </div>
    
    Он также включен при установке набора `all` с:
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[all]"
    ---> 100%
    ```
    
    </div>
    
    /// info | Информация
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 18.3K bytes
    - Click Count (0)
Back to Top