Diferencia entre revisiones de «Instalación Deno»
Ir a la navegación
Ir a la búsqueda
(→Ubuntu) |
(feat: Instalación Deno) |
||
Línea 36: | Línea 36: | ||
cd ~ | cd ~ | ||
curl -fsSL https://deno.land/install.sh | sh | curl -fsSL https://deno.land/install.sh | sh | ||
Ahora guardamos (control + o) y luego cerramos el editor (control + x). Volvemos a teclear en la terminal: | Ahora guardamos (control + o) y luego cerramos el editor (control + x). Volvemos a teclear en la terminal: | ||
Línea 53: | Línea 47: | ||
Sale por pantalla: | Sale por pantalla: | ||
deno | deno 2.0.2 (stable, release, x86_64-unknown-linux-gnu) | ||
v8 12. | v8 12.9.202.13-rusty | ||
typescript 5. | typescript 5.6.2 |
Revisión actual - 09:53 19 oct 2024
PowerShell (Windows)
irm https://deno.land/install.ps1 | iex
GNU/Linux
Ubuntu
Ubuntu 22.04 LTS
cd ~ curl -fsSL https://deno.land/x/install/install.sh | sh nano .bashrc
Agregar al final del archivo:
export DENO_INSTALL="/home/proyectosbeta/.deno" export PATH="$DENO_INSTALL/bin:$PATH"
Ahora guardamos (control + o) y luego cerramos el editor (control + x). Volvemos a teclear en la terminal:
source .bashrc
Verificar versión
deno --version
Sale por pantalla:
deno 1.33.1 (release, x86_64-unknown-linux-gnu) v8 11.4.183.1 typescript 5.0.3
Ubuntu 24.04 LTS
cd ~ curl -fsSL https://deno.land/install.sh | sh
Ahora guardamos (control + o) y luego cerramos el editor (control + x). Volvemos a teclear en la terminal:
source .bashrc
Verificar versión
deno --version
Sale por pantalla:
deno 2.0.2 (stable, release, x86_64-unknown-linux-gnu) v8 12.9.202.13-rusty typescript 5.6.2