You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/tutorials/quickstart/quick-start-cli.md
+26-2Lines changed: 26 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,17 +8,41 @@ The setup process for Arm Mbed CLI depends on your operating system. Please choo
8
8
9
9
#### Windows
10
10
11
-
##### 1. Install Mbed CLI
11
+
Two installation methods are available for Windows. The first is a pre-built installer that is intended to get your system up and running as fast as possible. The second installation method is more flexible, but allowed fore greater customization to better fit your system's needs.
12
+
13
+
##### Method A: Prebuilt Installer
14
+
15
+
###### Mbed CLI Installer
12
16
13
17
Download and run the [Mbed CLI Windows .exe installer](https://mbed-media.mbed.com/filer_public/50/38/5038849b-16a8-42f3-be7a-43d98c7a3af3/mbed_installer_v043.exe).
14
18
15
19
You can ensure Mbed CLI installed correctly by running `mbed help` from your command-line.
16
20
17
21
<spanclass="notes">**Note:** The Windows installer only installs the GNU Arm embedded toolchain. If you want to compile using Arm Compiler 5 or IAR, visit the [supported compilers page](/docs/latest/tools/index.html#compiler-versions).</span>
18
22
23
+
#### Method B: Manual Installation
24
+
25
+
###### 1. Download and install Python and Pip
26
+
27
+
Download and install [Python versions 2.7.12+ or 3.6.5+](https://www.python.org/downloads/windows/) for Windows. Both Python versions will come with their own version of pip.
28
+
29
+
<spanclass="notes">**Note:** When the installer is launched, check the checkbox that says "Add Python X.Y to PATH", otherwise Windows will not know where to search for the Python executable.</span>
30
+
31
+
###### 2. Install a compiler
32
+
33
+
Download and install a compiler.
34
+
35
+
<spanclass="notes">**Note:** To download the latest toolchains, visit the [supported compilers page](/docs/latest/tools/index.html#compiler-versions).</span>
36
+
37
+
###### 3. Install Mbed CLI
38
+
39
+
To install Mbed CLI, run `pip install mbed-cli` from your command-line.
40
+
41
+
You can ensure Mbed CLI installed correctly by running `mbed --version`.
42
+
19
43
##### 2. Setup environment
20
44
21
-
For any installed toolchain, be sure to add the Mbed CLI global configuration:
45
+
After installation is complete, be sure to add any available toolchains to Mbed CLI's global configuration. An example using the ARM compiler.
0 commit comments