Instalar pnpm
Ir a la navegación
Ir a la búsqueda
GNU/Linux
Ubuntu
Ubuntu 24.04 LTS
curl -fsSL https://get.pnpm.io/install.sh | sh -
Tecleamos lo siguiente: ~/.bashrc
nano ~/.bashrc
Al final del archivo agregamos lo siguiente:
export PNPM_HOME="/home/proyectosbeta/.local/share/pnpm" case ":$PATH:" in *":$PNPM_HOME:"*) ;; *) export PATH="$PNPM_HOME:$PATH" ;; esac
Guardamos (Control + o), y luego cerramos el editor (control + x). Volvemos a teclear en la terminal:
source ~/.bashrc
Verificamos la versión:
pnpm --version
Sale por pantalla.
9.14.4