2017-08-09 07:22:51 +08:00
---
2018-03-15 10:51:34 +08:00
title: Get Started with ASP.NET Core 1.1
2017-08-09 07:22:51 +08:00
author: rick-anderson
2018-03-15 10:51:34 +08:00
description: Follow this quick tutorial to create and run a simple Hello World app using ASP.NET Core 1.1.
2017-08-09 07:22:51 +08:00
manager: wpickett
2018-01-29 23:21:31 +08:00
ms.author: riande
2017-08-09 07:22:51 +08:00
ms.date: 08/07/2017
ms.prod: asp.net-core
2018-01-29 23:21:31 +08:00
ms.technology: aspnet
ms.topic: get-started-article
2017-08-09 07:22:51 +08:00
uid: getting-started-1.1
---
2018-03-15 10:51:34 +08:00
# Get Started with ASP.NET Core 1.1
2017-08-09 07:22:51 +08:00
> [!NOTE]
2017-08-15 00:59:40 +08:00
> These instructions are for ASP.NET Core 1.1. Looking for the latest version? See [the current version of this tutorial](xref:getting-started).
2017-08-09 07:22:51 +08:00
2018-03-20 12:04:00 +08:00
1. Install the .NET Core **SDK Installer** for SDK 1.0.4 from the [.NET Core All Downloads page ](https://www.microsoft.com/net/download/all ).
2017-08-09 07:22:51 +08:00
2. Create a folder for a new .NET Core project.
On macOS and Linux, open a terminal window. On Windows, open a command prompt.
```terminal
mkdir aspnetcoreapp
cd aspnetcoreapp
```
2017-08-15 00:59:40 +08:00
2. If you have installed a later SDK version on your machine, create a *global.json* file to select the 1.0.4 SDK.
2017-08-09 07:22:51 +08:00
```json
{
"sdk": { "version": "1.0.4" }
}
```
2. Create a new .NET Core project.
```terminal
dotnet new web
```
3. Restore the packages.
```terminal
dotnet restore
```
4. Run the app.
2018-02-25 00:10:22 +08:00
The [dotnet run ](/dotnet/core/tools/dotnet-run ) command builds the app first if needed.
2017-08-09 07:22:51 +08:00
```terminal
dotnet run
```
5. Browse to `http://localhost:5000`
<!-- H3 to avoid a single - entry internal TOC -->
### Next steps
For getting-started tutorials, see [ASP.NET Core Tutorials ](tutorials/index.md )
For an introduction to ASP.NET Core concepts and architecture, see [ASP.NET Core Introduction ](index.md ) and [ASP.NET Core Fundamentals ](fundamentals/index.md ).
An ASP.NET Core app can use the .NET Core or .NET Framework Base Class Library and runtime. For more information, see [Choosing between .NET Core and .NET Framework ](https://docs.microsoft.com/dotnet/articles/standard/choosing-core-framework-server ).