From 9bf85e5eb538d11a70fb8cb1ddbc55a7c59dcbf8 Mon Sep 17 00:00:00 2001 From: Ahmed Castro Date: Fri, 8 Oct 2021 09:37:51 -0600 Subject: [PATCH] Create README.md --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..ae93a67 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +## Dependencias + +Tienen que tener instaladado [NodeJS](https://nodejs.org/es/), les recomiendo instalarlo vía [NVM](https://github.com/nvm-sh/nvm#installing-and-updating) si trabajan en Linux. Tambien [Yarn](https://classic.yarnpkg.com/lang/en/docs/install/#debian-stable) que les recomiendo instalar via NPM. Y finalmente [Rust](https://www.rust-lang.org/tools/install) y [Solana CLI](https://docs.solana.com/cli/install-solana-cli-tools). + +```bash +# NodeJS +curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.0/install.sh | bash +# ahora reinicia tus variables de entorno +nvm install 14 +nvm alias default 14 + +# NodeJS +npm install --global yarn +# ahora reinicia tus variables de entorno + +# Rust +curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh +# ahora reinicia tus variables de entorno + +# Solana CLI +sh -c "$(curl -sSfL https://release.solana.com/v1.8.0/install)" +# ahora reinicia tus variables de entorno +```