Skip to content

Instantly share code, notes, and snippets.

@paulyuk
Last active November 23, 2021 21:53
Show Gist options
  • Save paulyuk/0edbed1a34f569a4cfc243b2b809702f to your computer and use it in GitHub Desktop.
Save paulyuk/0edbed1a34f569a4cfc243b2b809702f to your computer and use it in GitHub Desktop.
Install all the dev box goodies for WSL Ubuntu distro (x64)
# .NET 6 SDK
sudo apt-get update; \
sudo apt-get install -y apt-transport-https && \
sudo apt-get update && \
sudo apt-get install -y dotnet-sdk-6.0
# .NET 3.1 Runtime, needed for Tye
sudo apt-get update; \
sudo apt-get install -y apt-transport-https && \
sudo apt-get update && \
sudo apt-get install -y aspnetcore-runtime-3.1
# Tye
dotnet tool install -g Microsoft.Tye --version "0.10.0-alpha.21420.1"
# Python
sudo apt-get install python3
# Node.js
sudo apt-get install node
sudo apt-get install npm
# Dapr
wget -q https://raw.githubusercontent.com/dapr/cli/master/install/install.sh -O - | /bin/bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment