===========================================
POP INSTALL
===========================================

Set up the environment for development by installing required packages

Usage: pop install [OPTIONS]

Options:
  -y, --skip-confirm  Automatically install all dependencies required without prompting for
                      confirmation
  -h, --help          Print help

===========================================
WHAT IT DOES
===========================================

Installs necessary dependencies:
- cargo-contract (for ink! smart contract compilation)
- Substrate/Polkadot SDK dependencies
- ink-node (for local testing)
- Other required tools

The setup process is interactive and will guide you through each step.

===========================================
USAGE
===========================================

# Interactive mode (recommended)
pop install

# Auto-install without prompts
pop install -y

===========================================
WHEN TO USE
===========================================

- First time setup after installing Pop CLI
- After updating Pop CLI
- When missing dependencies
- When encountering build errors

===========================================
EXAMPLES
===========================================

# Initial setup
pop install

# CI/CD setup (no prompts)
pop install --skip-confirm

===========================================
NEXT STEPS
===========================================

pop new contract
pop new chain

See: new/contract.txt, new/chain.txt
