mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-01-03 09:57:49 -08:00
Merge pull request #694 from pdxlocations/flashing-esp32-cli
Flashing ESP32 CLI Docs - Remove repeated navigation links
This commit is contained in:
commit
adfd8c53a0
|
@ -22,7 +22,7 @@ The [T-Beam 0.7](/docs/hardware/devices/tbeam#t-beam---v07) board is an earlier
|
||||||
:::
|
:::
|
||||||
|
|
||||||
## Command Line Interface Instructions
|
## Command Line Interface Instructions
|
||||||
|
### Install Prerequisite Software
|
||||||
<Tabs
|
<Tabs
|
||||||
groupId="operating-system"
|
groupId="operating-system"
|
||||||
defaultValue="linux"
|
defaultValue="linux"
|
||||||
|
@ -33,7 +33,6 @@ values={[
|
||||||
]}>
|
]}>
|
||||||
<TabItem value="linux">
|
<TabItem value="linux">
|
||||||
|
|
||||||
### Install Prerequisite Software
|
|
||||||
|
|
||||||
Check if you have `python3` and `pip` installed with the following command
|
Check if you have `python3` and `pip` installed with the following command
|
||||||
|
|
||||||
|
@ -53,18 +52,12 @@ If `pip` is not installed, install with
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
sudo apt-get install python3-pip
|
sudo apt-get install python3-pip
|
||||||
```
|
|
||||||
|
|
||||||
### Install `esptool`
|
|
||||||
|
|
||||||
```shell
|
|
||||||
pip3 install --upgrade esptool
|
|
||||||
```
|
```
|
||||||
|
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem value="macos">
|
<TabItem value="macos">
|
||||||
|
|
||||||
### Install Prerequisite Software
|
|
||||||
|
|
||||||
OS X comes with `Python 2.7` installed, but not `pip`. The following uses Homebrew to install `python3` which includes `pip3`. On MacOS you will use `pip3` instead > of `pip`.
|
OS X comes with `Python 2.7` installed, but not `pip`. The following uses Homebrew to install `python3` which includes `pip3`. On MacOS you will use `pip3` instead > of `pip`.
|
||||||
|
|
||||||
|
@ -96,12 +89,6 @@ Confirm `pip3` was installed alongside `python3`
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
pip3 -v
|
pip3 -v
|
||||||
```
|
|
||||||
|
|
||||||
### Install `esptool`
|
|
||||||
|
|
||||||
```shell
|
|
||||||
pip3 install --upgrade esptool
|
|
||||||
```
|
```
|
||||||
|
|
||||||
</TabItem>
|
</TabItem>
|
||||||
|
@ -123,15 +110,17 @@ pip --version
|
||||||
|
|
||||||
:::
|
:::
|
||||||
|
|
||||||
### Install `esptool`
|
|
||||||
|
|
||||||
```shell
|
|
||||||
pip install --upgrade esptool
|
|
||||||
```
|
|
||||||
|
|
||||||
</TabItem>
|
</TabItem>
|
||||||
</Tabs>
|
</Tabs>
|
||||||
|
|
||||||
|
### Install `esptool`
|
||||||
|
|
||||||
|
```shell
|
||||||
|
pip3 install --upgrade esptool
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
### Confirm Communication With Chip
|
### Confirm Communication With Chip
|
||||||
|
|
||||||
<Tabs
|
<Tabs
|
||||||
|
|
Loading…
Reference in a new issue