Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 413 for instala (0.03 sec)

  1. docs/de/docs/fastapi-cli.md

    # FastAPI CLI { #fastapi-cli }
    
    **FastAPI CLI** ist ein Kommandozeilenprogramm, mit dem Sie Ihre FastAPI-App bereitstellen, Ihr FastAPI-Projekt verwalten und mehr.
    
    Wenn Sie FastAPI installieren (z. B. mit `pip install "fastapi[standard]"`), wird ein Package namens `fastapi-cli` mitgeliefert, das den Befehl `fastapi` im Terminal bereitstellt.
    
    Um Ihre FastAPI-App für die Entwicklung auszuführen, können Sie den Befehl `fastapi dev` verwenden:
    
    <div class="termy">
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 02 17:32:56 UTC 2025
    - 5K bytes
    - Viewed (0)
  2. docs/es/README.md

    ![GitHub Release](https://img.shields.io/github/v/release/codelibs/fess)
    
    ## Resumen
    
    Fess es un servidor de búsqueda empresarial muy potente y fácil de desplegar. Puedes instalar y ejecutar Fess rápidamente en cualquier plataforma que sea capaz de ejecutar el entorno de ejecución de Java (Java Runtime Environment). Fess se distribuye bajo la [Licencia Apache 2.0](LICENSE).
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Tue Nov 11 22:42:32 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  3. docs/es/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md

    ## Pydantic v1 en v2 { #pydantic-v1-in-v2 }
    
    Pydantic v2 incluye todo lo de Pydantic v1 como un submódulo `pydantic.v1`.
    
    Esto significa que puedes instalar la versión más reciente de Pydantic v2 e importar y usar los componentes viejos de Pydantic v1 desde ese submódulo, como si tuvieras instalado el Pydantic v1 antiguo.
    
    {* ../../docs_src/pydantic_v1_in_v2/tutorial001_an_py310.py hl[1,4] *}
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:16:35 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/artifact/installer/ArtifactInstaller.java

         *             method
         */
        @Deprecated
        void install(String basedir, String finalName, Artifact artifact, ArtifactRepository localRepository)
                throws ArtifactInstallationException;
    
        /**
         * Install an artifact from a particular file.
         *
         * @param source the file to install
         * @param artifact the artifact definition
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. plugin.xml

    	<property name="maven.release.repo.url" value="https://repo1.maven.org/maven2" />
    
    	<target name="install.plugins">
    		<mkdir dir="${target.dir}" />
    		<delete dir="${plugins.dir}" />
    		<mkdir dir="${plugins.dir}" />
    		<!-- analysis-extension -->
    		<antcall target="install.plugin">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    			<param name="plugin.groupId" value="org/codelibs/opensearch" />
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 18 09:50:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  6. module.xml

    	<property name="opensearch.version" value="3.4.0" />
    
    	<target name="install.modules">
    		<mkdir dir="${target.dir}" />
    		<delete dir="${modules.dir}" />
    		<mkdir dir="${modules.dir}" />
    
    		<!-- analysis-common -->
    		<antcall target="install.module">
    			<param name="repo.url" value="${maven.release.repo.url}" />
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 18 09:50:31 UTC 2025
    - 4K bytes
    - Viewed (0)
  7. docs/pt/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md

    ## Pydantic v1 no v2 { #pydantic-v1-in-v2 }
    
    O Pydantic v2 inclui tudo do Pydantic v1 como um submódulo `pydantic.v1`.
    
    Isso significa que você pode instalar a versão mais recente do Pydantic v2 e importar e usar os componentes antigos do Pydantic v1 a partir desse submódulo, como se tivesse o Pydantic v1 antigo instalado.
    
    {* ../../docs_src/pydantic_v1_in_v2/tutorial001_an_py310.py hl[1,4] *}
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Nov 12 16:23:57 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/docker.md

    pydantic>=2.7.0,<3.0.0
    ```
    
    And you would normally install those package dependencies with `pip`, for example:
    
    <div class="termy">
    
    ```console
    $ pip install -r requirements.txt
    ---> 100%
    Successfully installed fastapi pydantic
    ```
    
    </div>
    
    /// info
    
    There are other formats and tools to define and install package dependencies.
    
    ///
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Sep 20 12:58:04 UTC 2025
    - 29.5K bytes
    - Viewed (1)
  9. docs/en/docs/tutorial/request-forms-and-files.md

    /// info
    
    To receive uploaded files and/or form data, first install <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
    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
    ```
    
    ///
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  10. docs/en/docs/virtual-environments.md

    ```gitignore
    *
    ```
    
    ///
    
    ## Install Packages { #install-packages }
    
    After activating the environment, you can install packages in it.
    
    /// tip
    
    Do this **once** when installing or upgrading the packages your project needs.
    
    If you need to upgrade a version or add a new package you would **do this again**.
    
    ///
    
    ### Install Packages Directly { #install-packages-directly }
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 02 05:09:25 UTC 2025
    - 22.8K bytes
    - Viewed (0)
Back to top