Last active
April 9, 2020 22:53
-
-
Save unlight/e72374da92de9bd1b5a3829efe4afe4c to your computer and use it in GitHub Desktop.
wsl.txt
This file contains hidden or 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
| # Using Ubuntu - upgrade nodejs | |
| curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash - | |
| sudo apt-get install -y nodejs | |
| sudo apt install gcc g++ make | |
| # show package | |
| apt show PACKAGE | |
| # upgrade | |
| sudo apt-get update | |
| sudo apt-get --only-upgrade install PACKAGE | |
| # remove | |
| sudo apt-get purge nodejs | |
| # nvm | |
| curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash | |
| wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash | |
| nvm ls-remote |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment