dotnet-core/release-notes/download-archives/2.1.1-download.md
2018-06-28 09:01:06 -07:00

7.4 KiB

.NET Core 2.1.1

.NET Core 2.1.1 comprises:

  • .NET Core Runtime 2.1.1
  • .NET Core SDK 2.1.301
SDK Installer SDK Binaries Runtime Installer Runtime Binaries ASPNET Core Runtime
Windows 32-bit / 64-bit 32-bit / 64-bit 32-bit / 64-bit 32-bit / 64-bit -
macOS 64-bit 64-bit 64-bit 64-bit -
Linux (for glibc based OS) See installations steps below1 64-bit - 64-bit 64-bit
Linux (for musl based OS, such as Alpine) - 64-bit - 64-bit 64-bit
Linux ARM - 32-bit / 64-bit - 32-bit / 64-bit 32-bit
RHEL6 - 64-bit - 64-bit -

Checksum files to verify downloads are available as follows:

Debug Symbols

Docker

Images for .NET Core 2.1.1 are available on Docker.

Installing .NET Core on Linux 1

Uninstall Pre-release versions

If you have previous .NET Core Previews or daily builds installed, these should be removed before attempting to install .NET Core 2.1. This can be done by running a command such as the following.

sudo apt remove 2.1.300-preview2-008530

Installation from a package manager

Instructions for installing using your package manager, such as apt or yum, can be found on the dotnet-core site.

Installation from a binary archive

Installing from the packages detailed above is recommended and you can also install from binary archive. When using binary archives to install, the contents must be extracted to a user location such as $HOME/dotnet and a symbolic link created for dotnet.

mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
export PATH=$PATH:$HOME/dotnet

.NET Core Runtime-only installation

If only the .NET Core Runtime is needed, install dotnet-runtime-2.1.1 using your package manager.

Server Hosting

If you are looking to host stand-alone apps on Servers, the following installers can be used on Windows and Linux systems.

Windows

You can download the Windows Server Hosting installer and run the following command from an Administrator command prompt: dotnet-hosting-2.1.1-win.exe This will install the ASP.NET Core Module for IIS

Linux

On supported Linux systems, register the Microsoft Product feed as described above and install dotnet-hosting-2.1.1 using your package manager. This will also install the .NET Core Runtime and other required packages.

ASP.NET Core Runtime

The ASP.NET Core Runtime is installed by the .NET Core SDK and the Windows Server Hosting installer. If you need to install the ASP.NET Runtime separately, the following can be used.

On Linux systems install aspnetcore-runtime-2.1.1 using your package manager. This will install both the ASP.NET Core and .NET Core runtime components.