Skip to content

Instantly share code, notes, and snippets.

@Staler2019
Last active June 29, 2022 13:49
Show Gist options
  • Save Staler2019/aefa7bc1ab59d3993e008b85e34781aa to your computer and use it in GitHub Desktop.
Save Staler2019/aefa7bc1ab59d3993e008b85e34781aa to your computer and use it in GitHub Desktop.

Environment Installation

Windows

Ubuntu

apt update && apt upgrade -y
apt install git wget curl -y
  • C/C++
apt install gcc g++ -y
gcc -v
g++ -v
  • NPM
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
source ~/.bashrc
# echo "nvm -v"
nvm -v
nvm install --lts
# nvm install node # latest node
# nvm install 16 # node.js 16
# nvm use 16 # node.js 16
# nvm use 14 # node.js 14
# echo "node -v"
node -v
# node ls # ls installed node version
npm install -g npm
# echo "npm -v"
npm -v
  • YARN
# require npm
npm install -g yarn
yarn -v
  • REMIX
# require npm, yarn
npm install -g @remix-project/remixd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment