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
This guide provides step-by-step instructions to set up a complete development environment on macOS, including iTerm2, Zsh, Oh My Zsh, Git, Node.js, Python, Golang, PostgreSQL, MongoDB, Redis, Docker, and more. | |
## Prerequisites | |
- Ensure you have Homebrew installed. If not, you can install it using: | |
```bash | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
``` |
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
Certainly! Below is the complete setup guide compiled in Markdown format for you to share on GitHub Gist. | |
```markdown | |
# WSL2 Development Environment Setup Guide | |
This guide will help you set up a comprehensive development environment on WSL2. | |
## 1. Update WSL2 | |
```bash |
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
## Install Windows Terminal | |
1. **Open Microsoft Store** and search for "Windows Terminal". | |
2. **Install Windows Terminal**. | |
## Install Git | |
1. **Install Git using Chocolatey**: | |
```powershell | |
choco install -y git | |
``` |