Skip to content

Commit 5783a65

Browse files
committed
Step 3 - pages (but they need an edit)
1 parent f38c112 commit 5783a65

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

docs/tutorials/quickstart/quick-start-cli.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -6,39 +6,39 @@ The setup process for Arm Mbed CLI depends on your operating system. Please choo
66

77
[**Windows**](#windows) | [**macOS**](#macos) | [**Linux**](#linux)
88

9-
### Windows
9+
## Windows
1010

1111
Two installation methods are available for Windows. The first is a prebuilt installer that you can use quickly. The second installation method is more flexible and allows for greater customization to better fit your system's needs.
1212

13-
##### Prebuilt Mbed CLI installer
13+
### Prebuilt Mbed CLI installer
1414

1515
Download and run the [Mbed CLI Windows .exe installer](https://github.com/ARMmbed/mbed-cli-windows-installer/releases/latest).
1616

1717
You can ensure Mbed CLI installed correctly by running `mbed help` from your command-line.
1818

1919
<span class="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](../tools/index.html#compiler-versions).</span>
2020

21-
##### Manual installation
21+
### Manual installation
2222

23-
###### 1. Download and install Python and Pip
23+
#### 1. Download and install Python and Pip
2424

2525
Download and install [Python versions 2.7.11 or 3.6.5](https://www.python.org/downloads/windows/) or later for Windows. Both Python versions come with their own version of Pip.
2626

2727
<span class="notes">**Note:** When the installer launches, check the checkbox that says **Add Python X.Y to PATH**. Otherwise, Windows does not know where to search for the Python executable.</span>
2828

29-
###### 2. Install a compiler
29+
#### 2. Install a compiler
3030

3131
Download and install a compiler.
3232

3333
<span class="notes">**Note:** To download the latest toolchains, visit the [supported compilers page](../tools/index.html#compiler-versions).</span>
3434

35-
###### 3. Install Mbed CLI
35+
#### 3. Install Mbed CLI
3636

3737
To install Mbed CLI, run `pip install mbed-cli` from your command-line.
3838

3939
You can ensure Mbed CLI installed correctly by running `mbed --version`.
4040

41-
##### 4. Setup environment
41+
#### 4. Setup environment
4242

4343
After installation is complete, be sure to add any available toolchains to Mbed CLI's global configuration. Below is an example using the ARM compiler:
4444

@@ -54,35 +54,35 @@ ARM_PATH=<path to ARM bin\>
5454

5555
<span class="notes">**Note:** You can also apply the same configuration to the IAR and GNU toolchains using `IAR_PATH` or `GCC_ARM_PATH`.</span>
5656

57-
### macOS
57+
## macOS
5858

59-
##### Prebuilt Mbed CLI installer
59+
### Prebuilt Mbed CLI installer
6060

6161
Download and run the [macOS installer for Mbed CLI](https://github.com/ARMmbed/mbed-cli-osx-installer/releases/latest).
6262

63-
##### Manual installation
63+
### Manual installation
6464

65-
###### 1. Install Python and Pip
65+
#### 1. Install Python and Pip
6666

6767
macOS 10.8+ comes with Python 2.7 preinstalled by Apple. If you are running an earlier version of macOS, download and install [Python versions 2.7.11 or 3.6.5](https://www.python.org/downloads/mac-osx/) or later.
6868

6969
To install Pip, run `easy_install --user pip` from your command-line.
7070

71-
###### 2. Install a compiler
71+
#### 2. Install a compiler
7272

7373
Download and install a compiler.
7474

7575
<span class="notes">**Note:** To download the latest toolchains, visit the [supported compilers page](../tools/index.html#compiler-versions).</span>
7676

77-
###### 3. Install Mbed CLI
77+
#### 3. Install Mbed CLI
7878

7979
To install Mbed CLI, run `pip install mbed-cli --user` from your command-line.
8080

8181
You can ensure Mbed CLI installed correctly by running `mbed --version`.
8282

8383
<span class="notes">**Note:** You may also need to add the new Mbed CLI Python `--user` installation location (for example: `/Users/{username}/Library/Python/2.7/bin`) to the PATH.</span>
8484

85-
###### 4. Setup environment
85+
#### 4. Setup environment
8686

8787
For any installed toolchain, be sure to add the Mbed CLI global configuration:
8888

@@ -98,9 +98,9 @@ ARM_PATH=<path to ARM bin\>
9898

9999
<span class="notes">**Note:** You can also apply the same configuration to the IAR and GNU toolchains using `IAR_PATH` or `GCC_ARM_PATH`.</span>
100100

101-
### Linux
101+
## Linux
102102

103-
##### 1. Install Python and Pip
103+
### 1. Install Python and Pip
104104

105105
Download and install [Python versions 2.7.11 or 3.6.5](https://www.python.org/downloads/source/) or later, or use your distribution's package manager to install Python and Pip.
106106

@@ -110,19 +110,19 @@ As an example, you can use the following in Ubuntu:
110110
$ sudo apt-get install python2.7 python-pip
111111
```
112112

113-
##### 2. Install a compiler
113+
### 2. Install a compiler
114114

115115
Download and install a compiler:
116116

117117
<span class="notes">**Note:** To download the latest toolchains, visit the [supported compilers page](../tools/index.html#compiler-versions).</span>
118118

119-
##### 3. Install Mbed CLI
119+
### 3. Install Mbed CLI
120120

121121
To install Mbed CLI, run `pip install mbed-cli` from your command-line.
122122

123123
You can ensure Mbed CLI installed correctly by running `mbed help`.
124124

125-
##### 4. Setup environment
125+
### 4. Setup environment
126126

127127
For any installed toolchain, be sure to add the Mbed CLI global configuration:
128128

@@ -138,9 +138,9 @@ ARM_PATH=<path to ARM bin\>
138138

139139
<span class="notes">**Note:** You can also apply the same configuration to the IAR and GNU toolchains using `IAR_PATH` or `GCC_ARM_PATH`.</span>
140140

141-
### Code
141+
## Code
142142

143-
#### 1. Get the code
143+
### 1. Get the code
144144

145145
From your command-line, import the example:
146146

@@ -149,7 +149,7 @@ $ mbed import https://github.com/ARMmbed/mbed-os-quick-start-blinky
149149
$ cd mbed-os-quick-start-blinky
150150
```
151151

152-
#### 2. Compile and program board
152+
### 2. Compile and program board
153153

154154
Invoke `mbed compile`, and specify the name of your platform and your installed toolchain (`GCC_ARM`, `ARM`, `IAR`). For example, for the K64F platform and Arm Compiler 5 toolchain:
155155

0 commit comments

Comments
 (0)