-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
``` |