Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 166 for instalar (0.1 seconds)

  1. docs/tr/docs/translation-banner.md

    /// details | 🌐 Yapay Zekâ ve İnsanlar Tarafından Çeviri
    
    Bu çeviri, insanlar tarafından yönlendirilen bir yapay zekâ ile oluşturuldu. 🤝
    
    Orijinal anlamın yanlış anlaşılması ya da kulağa doğal gelmeme gibi hatalar içerebilir. 🤖
    
    [Yapay zekâ LLM'ini daha iyi yönlendirmemize yardımcı olarak](https://fastapi.tiangolo.com/tr/contributing/#translations) bu çeviriyi iyileştirebilirsiniz.
    
    [İngilizce sürüm](ENGLISH_VERSION_URL)
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:41:38 GMT 2026
    - 466 bytes
    - Click Count (0)
  2. docs/pt/docs/tutorial/request-forms.md

    /// info | Informação
    
    Para usar formulários, primeiro instale [`python-multipart`](https://github.com/Kludex/python-multipart).
    
    Certifique-se de criar um [ambiente virtual](../virtual-environments.md), ativá-lo e então instalá-lo, por exemplo:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    ## Importe `Form` { #import-form }
    
    Importe `Form` de `fastapi`:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  3. docs/fr/docs/tutorial/index.md

    Si vous ne souhaitez pas avoir ces dépendances optionnelles, vous pouvez à la place installer `pip install fastapi`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  4. docs/fr/docs/advanced/wsgi.md

    Il est conseillé d'utiliser le package `a2wsgi` à la place. L'utilisation reste la même.
    
    Assurez-vous simplement que le package `a2wsgi` est installé et importez `WSGIMiddleware` correctement depuis `a2wsgi`.
    
    ///
    
    ## Vérifiez { #check-it }
    
    Désormais, chaque requête sous le chemin `/v1/` sera gérée par l'application Flask.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  5. docs/pt/docs/advanced/strict-content-type.md

    Como está em execução localmente e não na Internet aberta, você decide não configurar autenticação, confiando apenas no acesso à rede local.
    
    Então um de seus usuários poderia instalá-lo e executá-lo localmente.
    
    Em seguida, poderia abrir um site malicioso, por exemplo:
    
    ```
    https://evilhackers.example.com
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:13 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  6. docs/fr/docs/tutorial/security/oauth2-jwt.md

    ## Installer `PyJWT` { #install-pyjwt }
    
    Nous devons installer `PyJWT` pour générer et vérifier les jetons JWT en Python.
    
    Assurez-vous de créer un [environnement virtuel](../../virtual-environments.md), de l'activer, puis d'installer `pyjwt` :
    
    <div class="termy">
    
    ```console
    $ pip install pyjwt
    
    ---> 100%
    ```
    
    </div>
    
    /// info
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  7. ci/official/utilities/setup.sh

        cat "$FROM_ENV"
        source "$FROM_ENV"
        rm "$FROM_ENV"
      fi
      set +u
    fi
    
    # If building installer wheels, set the required environment variables that are
    # read by setup.py.
    if [[ "$TFCI_INSTALLER_WHL_ENABLE" == 1 ]]; then
      export collaborator_build=True
      # If building nightly installer wheels, set the project name to
      # nightly equivalent.
      if [[ "$TFCI_NIGHTLY_UPDATE_VERSION_ENABLE" == 1 ]]; then
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Jan 09 18:37:25 GMT 2025
    - 6.2K bytes
    - Click Count (0)
  8. docs/es/docs/tutorial/response-model.md

    /// info | Información
    
    Para usar `EmailStr`, primero instala [`email-validator`](https://github.com/JoshData/python-email-validator).
    
    Asegúrate de crear un [entorno virtual](../virtual-environments.md), activarlo, y luego instalarlo, por ejemplo:
    
    ```console
    $ pip install email-validator
    ```
    
    o con:
    
    ```console
    $ pip install "pydantic[email]"
    ```
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  9. docs/fr/docs/advanced/templates.md

    ## Installer les dépendances { #install-dependencies }
    
    Vous devez créer un [environnement virtuel](../virtual-environments.md), l'activer, puis installer `jinja2` :
    
    <div class="termy">
    
    ```console
    $ pip install jinja2
    
    ---> 100%
    ```
    
    </div>
    
    ## Utiliser `Jinja2Templates` { #using-jinja2templates }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  10. docs/en/docs/environment-variables.md

    When you install Python, you might be asked if you want to update the `PATH` environment variable.
    
    //// tab | Linux, macOS
    
    Let's say you install Python and it ends up in a directory `/opt/custompython/bin`.
    
    If you say yes to update the `PATH` environment variable, then the installer will add `/opt/custompython/bin` to the `PATH` environment variable.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 7.9K bytes
    - Click Count (0)
Back to Top