# .NET Core 3.1.15 .NET Core 3.1.15 comprises: * .NET Core Runtime 3.1.15 * ASP.NET Core 3.1.15 * .NET Core SDK 3.1.115 See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/3.1/3.1.15/3.1.15.md) for details about what is included in this update. ## Docker The [.NET Core Docker images](https://hub.docker.com/_/microsoft-dotnet) have been updated for this release. The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/main/samples/README.md) show various ways to use .NET and Docker together. ## Installing .NET Core on Linux ### Install using Snap Snap is a system that installs applications in an isolated environment and provides for automatic updates. Many distributions that are not directly supported by .NET Core can use Snaps to install. See the [list of distributions supported Snap](https://docs.snapcraft.io/installing-snapd/6735) for details. After configuring Snap on your system, run the following command to install the latest .NET Core SDK. `sudo snap install dotnet-sdk --channel 3.1/stable --classic` When .NET Core in installed using the Snap package, the default .NET Core command is `dotnet-sdk.dotnet`, as opposed to just `dotnet`. The benefit of the namespaced command is that it will not conflict with a globally installed .NET Core version you may have. This command can be aliased to `dotnet` with: `sudo snap alias dotnet-sdk.dotnet dotnet` **Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md) for a possible resolution. ### Install using a Package Manager Before installing .NET, you need to register the Microsoft key, register the product repository, and install required dependencies. This only needs to be done once per machine. Refer to [Setting up Linux for .NET Core][linux-setup] for the requirements. The following commands don't specifically include package managers to help with readability. Here are the package managers typically used by the distros on which .NET Core is supported. | Distro | Package Manager | | --- | :----: | | CentOS, Oracle | yum | | Debian, Ubuntu | apt-get | | Fedora | dnf | | OpenSUSE, SLES | zypper | Note: .NET Core 3.1 is available in the default Fedora 33+ packages feeds. Before using the default Fedora package feed, please make sure to remove any packages.microsoft.com registration first. ## Develop applications To develop applications using the .NET Core SDK, run the following command. The .NET Core and ASP.NET Core runtimes are included. ```bash sudo [package manager] update or refresh sudo [package manager] install dotnet-sdk-3.1 ``` ## Run applications If you only need to run existing applications, run the following command. The .NET Core and ASP.NET Core runtimes are included. ```bash sudo [package manager] update or refresh sudo [package manager] install aspnetcore-runtime-3.1 ``` ### Installation from a binary archive Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document. ```bash 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-3.1` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-3.1` will install both the ASP.NET Core Runtime and .NET Core Runtime. ## Windows Server Hosting If you're looking to host standalone apps on servers, the following installer can be used on Windows systems. ### Windows You can download the Windows Server Hosting installer and run the following command from an Administrator command prompt: * [dotnet-hosting-3.1.15-win.exe][dotnet-hosting-win.exe] This will install the ASP.NET Core Module for IIS. [blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/ [blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/ [release-notes]: https://github.com/dotnet/core/blob/main/release-notes/3.1/3.1.15/3.1.15.md [checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.15-sha.txt [checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.15-sha.txt [linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux [dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/c8eabe25-bb2b-4089-992e-48198ff72ad8/a55a5313bfb65ac9bd2e5069dd4de5bc/dotnet-hosting-3.1.15-win.exe