Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 579 for instale (0.06 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/es/docs/advanced/wsgi.md

    ## Usando `WSGIMiddleware` { #using-wsgimiddleware }
    
    /// info | Información
    
    Esto requiere instalar `a2wsgi`, por ejemplo con `pip install a2wsgi`.
    
    ///
    
    Necesitas importar `WSGIMiddleware` de `a2wsgi`.
    
    Luego envuelve la aplicación WSGI (p. ej., Flask) con el middleware.
    
    Y luego móntala bajo un path.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 1.4K bytes
    - Click Count (0)
  2. docs/es/docs/tutorial/request-forms.md

    /// info | Información
    
    Para usar formularios, primero instala [`python-multipart`](https://github.com/Kludex/python-multipart).
    
    Asegúrate de crear un [entorno virtual](../virtual-environments.md), activarlo, y luego instalarlo, por ejemplo:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## Importar `Form` { #import-form }
    
    Importar `Form` desde `fastapi`:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  3. docs/pt/docs/advanced/wsgi.md

    ## Usando `WSGIMiddleware` { #using-wsgimiddleware }
    
    /// info | Informação
    
    Isso requer instalar `a2wsgi`, por exemplo com `pip install a2wsgi`.
    
    ///
    
    Você precisa importar o `WSGIMiddleware` de `a2wsgi`.
    
    Em seguida, encapsule a aplicação WSGI (e.g. Flask) com o middleware.
    
    E então monte isso sob um path.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  4. docs/es/docs/tutorial/security/first-steps.md

    ## Ejecútalo { #run-it }
    
    /// info | Información
    
    El paquete [`python-multipart`](https://github.com/Kludex/python-multipart) se instala automáticamente con **FastAPI** cuando ejecutas el comando `pip install "fastapi[standard]"`.
    
    Sin embargo, si usas el comando `pip install fastapi`, el paquete `python-multipart` no se incluye por defecto.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 8.8K bytes
    - Click Count (0)
  5. fastapi/openapi/models.py

                logger.warning(
                    "email-validator not installed, email fields will be treated as str.\n"
                    "To install, run: pip install email-validator"
                )
                return str(v)
    
            @classmethod
            def _validate(cls, __input_value: Any, _: Any) -> str:
                logger.warning(
                    "email-validator not installed, email fields will be treated as str.\n"
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  6. docs/es/docs/tutorial/sql-databases.md

    ## Instalar `SQLModel` { #install-sqlmodel }
    
    Primero, asegúrate de crear tu [entorno virtual](../virtual-environments.md), actívalo, y luego instala `sqlmodel`:
    
    <div class="termy">
    
    ```console
    $ pip install sqlmodel
    ---> 100%
    ```
    
    </div>
    
    ## Crear la App con un Solo Modelo { #create-the-app-with-a-single-model }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  7. docs/es/README.md

        $ unzip fess-15.3.x.zip
        $ cd fess-15.3.x
        $ ./bin/fess
    
    Para más detalles, consulta la [Guía de Instalación](https://fess.codelibs.org/15.3/install/index.html).
    
    ### Docker
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.8K bytes
    - Click Count (0)
  8. docs/pt/docs/fastapi-cli.md

    Quando você instala o FastAPI (por exemplo, com `pip install "fastapi[standard]"`), ele vem com um programa de linha de comando que você pode executar no terminal.
    
    Para executar sua aplicação FastAPI durante o desenvolvimento, você pode usar o comando `fastapi dev`:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  9. docs/pt-BR/README.md

    [discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/)
    
    ## Como Começar
    
    Existem duas maneiras de testar o Fess. A primeira é baixar e instalar você mesmo. A segunda é usar [Docker](https://www.docker.com/products/docker-engine).
    
    ### Baixar e Instalar/Executar
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.6K bytes
    - Click Count (0)
  10. .github/workflows/team-triage-stale.yml

              days-before-issue-stale: 14
              stale-issue-label: to-triage
              stale-issue-message: ""
              days-before-issue-close: -1
    
              only-pr-labels: 'from:contributor'
              exempt-all-pr-milestones: true
              days-before-pr-stale: 14
              stale-pr-label: to-triage
              stale-pr-message: ""
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Sep 04 22:13:29 GMT 2025
    - 836 bytes
    - Click Count (0)
Back to Top