Skip to content

Instantly share code, notes, and snippets.

@seanw122
Last active March 16, 2020 22:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seanw122/6120ef8e1d580ab2165dd48a1dff1719 to your computer and use it in GitHub Desktop.
Save seanw122/6120ef8e1d580ab2165dd48a1dff1719 to your computer and use it in GitHub Desktop.
Install ASP.NET Core 3.1 on Ubuntu 18.04
sudo wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
sudo dpkg -i packages-microsoft-prod.deb && \
sudo DEBIAN_FRONTEND=noninteractive apt-get -y update && \
sudo DEBIAN_FRONTEND=noninteractive apt-get install apt-transport-https && \
sudo DEBIAN_FRONTEND=noninteractive apt-get -y update && \
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y aspnetcore-runtime-3.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment