| OLD | NEW |
| (Empty) | |
| 1 First install Dart, and then choose your editor. |
| 2 (Don't care which editor you use? |
| 3 Skip to [Step 2](#step-2-pick-an-editor-linux) and choose **Dart Editor**, |
| 4 which includes Dart.) |
| 5 |
| 6 ## Step 1: Install Dart |
| 7 |
| 8 Choose either: |
| 9 |
| 10 * [Server-side development for Debian/Ubuntu](#debian) |
| 11 * [Other Linux development](#other) |
| 12 |
| 13 If you want to build Dart from scratch, see |
| 14 [Compiling from source](#compiling-from-source). |
| 15 |
| 16 ### Installing for server-side development on Debian/Ubuntu {#debian} |
| 17 |
| 18 Get a 64-bit version of the Dart SDK that's easy to update: |
| 19 |
| 20 {% prettify sh %} |
| 21 # Enable HTTPS for apt. |
| 22 $ sudo apt-get update |
| 23 $ sudo apt-get install apt-transport-https |
| 24 # Get the Google Linux package signing key. |
| 25 $ sudo sh -c 'curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-k
ey add -' |
| 26 # Set up the location of the stable repository. |
| 27 $ sudo sh -c 'curl https://storage.googleapis.com/download.dartlang.org/linux/de
bian/dart_stable.list > /etc/apt/sources.list.d/dart_stable.list' |
| 28 $ sudo apt-get update |
| 29 $ sudo apt-get install dart |
| 30 {% endprettify %} |
| 31 |
| 32 For more information about other options for Debian, visit the |
| 33 [Dart Debian downloads page](/tools/debian.html). |
| 34 |
| 35 |
| 36 ### Installing on other Linux distros {#other} |
| 37 |
| 38 You can manually download and extract the Dart SDK from a zip file: |
| 39 |
| 40 <p class="os-choices"> |
| 41 {% include downloads/_sdk.html buttonclass="btn btn-primary btn-lg" %} |
| 42 </p> |
| 43 |
| 44 If you're creating Dart web apps, also download Dartium: |
| 45 |
| 46 <p> |
| 47 {% include downloads/_dartium.html buttonclass="btn btn-primary btn-lg download-
btn" %} |
| 48 </p> |
| 49 |
| 50 The Dartium binary expires after 12 weeks. When that happens, you need to |
| 51 download a new copy to continue using Dartium. |
| 52 |
| 53 ### Compiling from source |
| 54 |
| 55 You can [build the SDK](https://code.google.com/p/dart/wiki/Building) yourself. |
| 56 If your system uses an older version of Ubuntu, |
| 57 you might need to update to GCC 4.6 or later. |
| 58 See the [Tools FAQ](/tools/faq.html) for more information. |
| OLD | NEW |