removed spaces/tabs

This commit is contained in:
Foster Irwin 2022-03-11 07:28:57 -07:00
parent 1f8fb8289b
commit 1726da02f4

View file

@ -27,30 +27,30 @@ values={[
{label: 'macOS', value: 'macos'}, {label: 'macOS', value: 'macos'},
{label: 'Windows', value: 'windows'}, {label: 'Windows', value: 'windows'},
]}> ]}>
<TabItem value="linux"> <TabItem value="linux">
```bash title="Check python3 version" ```bash title="Check python3 version"
python3 --version python3 --version
# If version is less than v3.6, please update python3 # If version is less than v3.6, please update python3
``` ```
</TabItem> </TabItem>
<TabItem value="macos"> <TabItem value="macos">
```bash title="Check python3 version" ```bash title="Check python3 version"
python3 --version python3 --version
# If version is less than v3.6, please update python3 # If version is less than v3.6, please update python3
``` ```
</TabItem> </TabItem>
<TabItem value="windows"> <TabItem value="windows">
```bash title="Check python3 version" ```bash title="Check python3 version"
python3 --version python3 --version
# If version is less than v3.9+, please update python3 # If version is less than v3.9+, please update python3
``` ```
</TabItem> </TabItem>
</Tabs> </Tabs>
#### Install `python3` #### Install `python3`
@ -63,23 +63,23 @@ values={[
{label: 'macOS', value: 'macos'}, {label: 'macOS', value: 'macos'},
{label: 'Windows', value: 'windows'}, {label: 'Windows', value: 'windows'},
]}> ]}>
<TabItem value="linux"> <TabItem value="linux">
TODO TODO
</TabItem> </TabItem>
<TabItem value="macos"> <TabItem value="macos">
- [Download directly from python.org](https://www.python.org/downloads/macos/) - [Download directly from python.org](https://www.python.org/downloads/macos/)
- [Homebrew](https://brew.sh/) - [Homebrew](https://brew.sh/)
- [MacPorts](https://www.macports.org/) - [MacPorts](https://www.macports.org/)
</TabItem> </TabItem>
<TabItem value="windows"> <TabItem value="windows">
- [Download directly from python.org](https://www.python.org/downloads/windows/) - [Download directly from python.org](https://www.python.org/downloads/windows/)
</TabItem> </TabItem>
</Tabs> </Tabs>
### Install App ### Install App
@ -96,38 +96,38 @@ values={[
]}> ]}>
<TabItem value="linux"> <TabItem value="linux">
```bash title="Install Meshtastic Flasher" ```bash title="Install Meshtastic Flasher"
python3 --version python3 --version
# ensure you are using at least python v3.6 # ensure you are using at least python v3.6
# change to a directory where you want to create a python virtual environment # change to a directory where you want to create a python virtual environment
mkdir some_dir mkdir some_dir
cd some_dir cd some_dir
# if the following command fails, it might tell you what package to install # if the following command fails, it might tell you what package to install
python3 -m venv venv python3 -m venv venv
# activate the python virtual environment # activate the python virtual environment
source venv/bin/activate source venv/bin/activate
# your prompt should change - it should include "(venv) in the front # your prompt should change - it should include "(venv) in the front
# upgrade pip # upgrade pip
pip install --upgrade pip pip install --upgrade pip
pip install meshtastic-flasher pip install meshtastic-flasher
``` ```
```bash title="Running Meshtastic Flasher" ```bash title="Running Meshtastic Flasher"
meshtastic-flasher meshtastic-flasher
``` ```
</TabItem> </TabItem>
<TabItem value="macos"> <TabItem value="macos">
To install `meshtastic-flasher`, download Meshtastic-flasher.app.zip from https://github.com/meshtastic/Meshtastic-gui-installer/releases/tag/macapp1.0.0 , unzip and drag to /Applications. To install `meshtastic-flasher`, download Meshtastic-flasher.app.zip from https://github.com/meshtastic/Meshtastic-gui-installer/releases/tag/macapp1.0.0 , unzip and drag to /Applications.
</TabItem> </TabItem>
<TabItem value="windows"> <TabItem value="windows">
To install meshtastic-flasher, download meshtastic-flasher.zip from https://github.com/meshtastic/Meshtastic-gui-installer/releases/tag/winapp1.0.0, unzip and run. To install meshtastic-flasher, download meshtastic-flasher.zip from https://github.com/meshtastic/Meshtastic-gui-installer/releases/tag/winapp1.0.0, unzip and run.
</TabItem> </TabItem>
</Tabs> </Tabs>
### Install using `pip` ### Install using `pip`