Add some docs for building from source and binary. fixes #10063 (#420)

diff --git a/README.md b/README.md
index 840b195..1e6fe00 100644
--- a/README.md
+++ b/README.md
@@ -11,11 +11,19 @@
 You can also set up Emscripten from source, without the pre-built SDK, see
 "Installing from Source" below.
 
-## Downloads
+## Downloads / How do I get the latest Emscripten build?
 
 To get started with Emscripten development, see the [Emscripten website
 documentation](https://emscripten.org/docs/getting_started/downloads.html).
 
+That explains how to use the emsdk to get the latest binary builds (without
+compiling from source). Basically, that amounts to
+
+```
+./emsdk install latest
+./emsdk activate latest
+```
+
 ## SDK Concepts
 
 The Emscripten SDK is effectively a small package manager for tools that are
@@ -118,7 +126,7 @@
 your migration path. Type `emsdk list --old` to get a list of archived tool and
 SDK versions, and `emsdk install <name_of_tool>` to install it.
 
-### I want to build from source/I want to download a precompiled build!
+### I want to build from source!
 
 Some Emsdk Tool and SDK targets refer to packages that are precompiled, and
 no compilation is needed when installing them. Other Emsdk Tools and SDK
@@ -132,6 +140,7 @@
 
 ```
 emsdk install sdk-upstream-master-64bit
+emsdk activate sdk-upstream-master-64bit
 ```
 
 You can use this target for example to bootstrap developing patches to LLVM,