--- name: install_uv kind: function lang: bash domain: infra version: "1.0.0" purity: impure signature: "install_uv() -> void" description: "Instala uv, el gestor de paquetes Python ultra-rápido escrito en Rust, usando el instalador oficial de astral.sh. Configura PATH en ~/.bashrc y ~/.zshrc. Idempotente: si uv ya está instalado, informa y termina." tags: [bash, install, uv, python, pendiente-usar] uses_functions: [] uses_types: [] returns: [] returns_optional: false error_type: "error_go_core" imports: [] params: - name: "(ninguno)" desc: "no acepta argumentos" output: "progreso a stdout; exit code 1 si curl no está disponible o falla la instalación" tested: false tests: [] test_file_path: "" file_path: "bash/functions/infra/install_uv.sh" source_repo: "https://gitea-dgg044oo04woo4ggcsws4gk0.organic-machine.com/egutierrez/DevLauncher.git" source_license: "MIT" source_file: "scripts/linux/instaladores/instalar_uv.sh" --- ## Ejemplo ```bash source bash/functions/infra/install_uv.sh install_uv # Uso posterior uv venv source .venv/bin/activate uv pip install requests pandas ``` ## Notas Instala en `$HOME/.cargo/bin`. Requiere `curl`. uv es compatible con pip pero 10-100x más rápido. Después de instalar en una sesión nueva, hay que recargar el shell.