https://github.com/willneve/setup
My Windows/WSL2 development environment setup
https://github.com/willneve/setup
setup setup-development-environment setup-script wsl-ubuntu
Last synced: about 1 year ago
JSON representation
My Windows/WSL2 development environment setup
- Host: GitHub
- URL: https://github.com/willneve/setup
- Owner: WillNeve
- Created: 2024-10-23T22:37:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-24T01:30:49.000Z (over 1 year ago)
- Last Synced: 2024-10-24T14:49:04.309Z (over 1 year ago)
- Topics: setup, setup-development-environment, setup-script, wsl-ubuntu
- Language: Shell
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ⚙️ WSL2/Ubuntu Env Setup
## 1. **Install WSL (Windows Subsystem for Linux)**
- Open PowerShell as an administrator and run:
```bash
wsl --install
```
_this will also install Ubuntu Linux Distribution as default_
- on Windows terminal, open an Ubuntu window to complete the installation
- _System restart will likely be needed after this_
## 2. **Install Visual Studio Code (VSCode)**
- Download the VSCode installer from [here](https://code.visualstudio.com/) and install it on your Windows system.
- During installation, ensure you tick the box for **Add to PATH**.
- _You may need to restart shell for PATH addition `code` to take affect_
## 3. **Download and run setup script**
```bash
bash <(wget -qO- https://raw.githubusercontent.com/WillNeve/setup/refs/heads/main/setup.sh)
```
If you are not me feel free to instead download the script and inspect it 👀
```bash
wget -O the-setup-script.sh https://raw.githubusercontent.com/WillNeve/setup/refs/heads/main/setup.sh
echo " - - - - - - v SETUP SCRIPT v - - - - - -"
cat the-setup-script.sh
echo " - - - - - - ^ SETUP SCRIPT ^ - - - - - -"
rm the-setup-script.sh
```