To setup the environment quickly in windows for Blockchain development, follow the below steps
Step 1. Install Node.js in PC using below winget command
winget install -e --id OpenJS.NodeJS
Step 2. Install truffle using npm, truffle provides development framework for Blockchain using EVM (Ethereum Virtual Machine)
npm install -g truffle
Step 3. After installing successfully, make sure truffle-installed successfully by executing below command
truffle --version
Step 4. To create blank project, run the below command
truffle init
Step 5. To create the Smart Contarct run the below command
truffle create contract <contract_name>