- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 322 for installer (0.12 seconds)
-
ci/devinfra/docker/windows/Dockerfile
\ Write-Host 'Verifying install ...'; \ Write-Host ' python --version'; C:\python312\python.exe --version; \ \ Write-Host 'Verifying pip install ...'; \ C:\python312\python.exe -m pip --version; \ \ Write-Host 'Removing ...'; \ Remove-Item C:\tmp\pyinstall.exe -Force; \ \ Write-Host 'Complete.'; # Install pip packages. RUN python -m pip install --ignore-installed --force-reinstall --upgrade \
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Fri Jan 17 16:35:57 GMT 2025 - 8.4K bytes - Click Count (0) -
ci/devinfra/docker/windows2022/Dockerfile
Write-Host \" python --version $version\"; & $installDir\python.exe --version; \ \ Write-Host 'Verifying pip install...'; \ & $installDir\python.exe -m pip --version; \ \ Write-Host 'Updating pip...'; \ & $installDir\python.exe -m pip install --upgrade pip; \ \ Write-Host 'Installing/updating packages...'; \Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Mar 04 19:50:57 GMT 2026 - 10.4K bytes - Click Count (0) -
docs/docker/README.md
See our web documentation on [Deploying MinIO in Standalone Mode](Deploy Standalone MinIO in a Container) for a more structured tutorial on deploying MinIO in a container. ## Prerequisites Docker installed on your machine. Download the relevant installer from [here](https://www.docker.com/community-edition#/download). ## Run Standalone MinIO on Docker
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 8.2K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java
(layout != null) ? layout.getClass().getSimpleName() : "legacy"); /* * NOTE: "invoker:install" vs "appassembler:assemble": Both mojos use the artifact installer to put an artifact * into a repository. In the first case, the result needs to be a proper local repository that one can use for
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 13.1K bytes - Click Count (0) -
docs/fr/docs/virtual-environments.md
Pour travailler avec FastAPI, vous devez installer [Python](https://www.python.org/). Ensuite, vous devrez installer FastAPI et tout autre package que vous souhaitez utiliser. Pour installer des packages, vous utiliseriez normalement la commande `pip` fournie avec Python (ou des alternatives similaires).
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 24.5K bytes - Click Count (0) -
fess-crawler-lasta/src/main/resources/crawler/extractor.xml
"application/vnd.accpac.simply.aso", "application/vnd.accpac.simply.imp", "application/vnd.acucobol", "application/vnd.acucorp", "application/vnd.adobe.air-application-installer-package+zip", "application/vnd.adobe.aftereffects.project", "application/vnd.adobe.aftereffects.template", "application/vnd.adobe.xdp+xml", "application/vnd.adobe.xfdf", "application/vnd.aether.imp",
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Wed Feb 11 01:15:55 GMT 2026 - 50.4K bytes - Click Count (0) -
docs/fr/docs/tutorial/index.md
Lorsque vous installez avec `pip install "fastapi[standard]"`, cela inclut des dépendances standards optionnelles par défaut, y compris `fastapi-cloud-cli`, qui vous permet de déployer sur [FastAPI Cloud](https://fastapicloud.com). 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) -
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> /// infoCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 12.6K bytes - Click Count (0) -
docs/fr/docs/deployment/docker.md
pydantic>=2.7.0,<3.0.0 ``` Et vous installerez normalement ces dépendances de paquets avec `pip`, par exemple : <div class="termy"> ```console $ pip install -r requirements.txt ---> 100% Successfully installed fastapi pydantic ``` </div> /// info Il existe d'autres formats et outils pour définir et installer des dépendances de paquets. ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 32.3K bytes - Click Count (0) -
docs/fr/docs/tutorial/testing.md
## Utiliser `TestClient` { #using-testclient } /// info Pour utiliser `TestClient`, installez d’abord [`httpx`](https://www.python-httpx.org). Vous devez créer un [environnement virtuel](../virtual-environments.md), l’activer, puis y installer le paquet, par exemple : ```console $ pip install httpx ``` /// Importez `TestClient`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 6.5K bytes - Click Count (0)