mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-09 23:24:10 -08:00
Update installation.md
This commit is contained in:
parent
39cf59d41d
commit
3791507683
|
@ -21,7 +21,7 @@ Installation is easily done through the [Python package installer pip](https://p
|
||||||
{label: 'Windows', value: 'windows'},
|
{label: 'Windows', value: 'windows'},
|
||||||
]}>
|
]}>
|
||||||
<TabItem value="linux">
|
<TabItem value="linux">
|
||||||
- Check that your computer has the required serial drivers installed
|
* Check that your computer has the required serial drivers installed
|
||||||
* Connect your Meshtastic device to your USB port
|
* Connect your Meshtastic device to your USB port
|
||||||
* Use the command
|
* Use the command
|
||||||
```bash
|
```bash
|
||||||
|
@ -29,34 +29,34 @@ Installation is easily done through the [Python package installer pip](https://p
|
||||||
```
|
```
|
||||||
* You should see something like `CP210X USB to UART Bridge Controller`
|
* You should see something like `CP210X USB to UART Bridge Controller`
|
||||||
* If not download the drivers from [Silicon Labs](https://www.silabs.com/developers/usb-to-uart-bridge-vcp-drivers).
|
* If not download the drivers from [Silicon Labs](https://www.silabs.com/developers/usb-to-uart-bridge-vcp-drivers).
|
||||||
- Check that your computer has Python 3 installed.
|
* Check that your computer has Python 3 installed.
|
||||||
* Use the command
|
* Use the command
|
||||||
```bash
|
```bash
|
||||||
python3 -V
|
python3 -V
|
||||||
```
|
```
|
||||||
* If this does not return a version, install [python](https://www.python.org)
|
* If this does not return a version, install [python](https://www.python.org)
|
||||||
- Pip is typically installed if you are using python 3 version >= 3.4
|
* Pip is typically installed if you are using python 3 version >= 3.4
|
||||||
* Check that pip is installed using this command
|
* Check that pip is installed using this command
|
||||||
```bash
|
```bash
|
||||||
pip3 -V
|
pip3 -V
|
||||||
```
|
```
|
||||||
* If this does not return a version, install [pip](https://pip.pypa.io/en/stable/installing/)
|
* If this does not return a version, install [pip](https://pip.pypa.io/en/stable/installing/)
|
||||||
- Install pytap2
|
* Install pytap2
|
||||||
```bash
|
```bash
|
||||||
sudo pip3 install --upgrade pytap2
|
sudo pip3 install --upgrade pytap2
|
||||||
```
|
```
|
||||||
- Install meshtastic:
|
* Install meshtastic:
|
||||||
```bash
|
```bash
|
||||||
sudo pip3 install --upgrade meshtastic
|
sudo pip3 install --upgrade meshtastic
|
||||||
```
|
```
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem value="macos">
|
<TabItem value="macos">
|
||||||
- Check that your computer has the required serial drivers installed
|
* Check that your computer has the required serial drivers installed
|
||||||
* Connect your Meshtastic device to your USB port
|
* Connect your Meshtastic device to your USB port
|
||||||
* Navigate to `Apple Menu > About This Mac > System Report... > Hardware > USB`
|
* Navigate to `Apple Menu > About This Mac > System Report... > Hardware > USB`
|
||||||
* You should see something like `CP210X USB to UART Bridge Controller`
|
* You should see something like `CP210X USB to UART Bridge Controller`
|
||||||
* If not download the drivers from [Silicon Labs](https://www.silabs.com/developers/usb-to-uart-bridge-vcp-drivers).
|
* If not download the drivers from [Silicon Labs](https://www.silabs.com/developers/usb-to-uart-bridge-vcp-drivers).
|
||||||
- Check that your computer has Python 3 installed.
|
* Check that your computer has Python 3 installed.
|
||||||
* Use the command
|
* Use the command
|
||||||
```bash
|
```bash
|
||||||
python3 -V
|
python3 -V
|
||||||
|
@ -72,44 +72,44 @@ Installation is easily done through the [Python package installer pip](https://p
|
||||||
```bash
|
```bash
|
||||||
brew install python3
|
brew install python3
|
||||||
```
|
```
|
||||||
- Pip is typically installed if you are using python 3 version >= 3.4
|
* Pip is typically installed if you are using python 3 version >= 3.4
|
||||||
* Check that pip is installed using this command
|
* Check that pip is installed using this command
|
||||||
```bash
|
```bash
|
||||||
pip3 -V
|
pip3 -V
|
||||||
```
|
```
|
||||||
* If this does not return a version, install [pip](https://pip.pypa.io/en/stable/installing/)
|
* If this does not return a version, install [pip](https://pip.pypa.io/en/stable/installing/)
|
||||||
- Install pytap2
|
* Install pytap2
|
||||||
```bash
|
```bash
|
||||||
sudo pip3 install --upgrade pytap2
|
sudo pip3 install --upgrade pytap2
|
||||||
```
|
```
|
||||||
- Install meshtastic:
|
* Install meshtastic:
|
||||||
```bash
|
```bash
|
||||||
sudo pip3 install --upgrade meshtastic
|
sudo pip3 install --upgrade meshtastic
|
||||||
```
|
```
|
||||||
</TabItem>
|
</TabItem>
|
||||||
<TabItem value="windows">
|
<TabItem value="windows">
|
||||||
- Check that your computer has the required serial drivers installed
|
* Check that your computer has the required serial drivers installed
|
||||||
* Connect your Meshtastic device to your USB port
|
* Connect your Meshtastic device to your USB port
|
||||||
* Open Device Manager
|
* Open Device Manager
|
||||||
* Under `Ports (COM & LPT)` you should see something like `Silicon Labs CP210X USB to UART Bridge (COM5)`
|
* Under `Ports (COM & LPT)` you should see something like `Silicon Labs CP210X USB to UART Bridge (COM5)`
|
||||||
* If not download the drivers from [Silicon Labs](https://www.silabs.com/developers/usb-to-uart-bridge-vcp-drivers).
|
* If not download the drivers from [Silicon Labs](https://www.silabs.com/developers/usb-to-uart-bridge-vcp-drivers).
|
||||||
- Check that your computer has Python 3 installed.
|
* Check that your computer has Python 3 installed.
|
||||||
* Use the command
|
* Use the command
|
||||||
```powershell
|
```powershell
|
||||||
py -V
|
py -V
|
||||||
```
|
```
|
||||||
* If this does not return a version, install [python](https://www.python.org)
|
* If this does not return a version, install [python](https://www.python.org)
|
||||||
- Pip is typically installed if you are using python 3 version >= 3.4
|
* Pip is typically installed if you are using python 3 version >= 3.4
|
||||||
* Check that pip is installed using this command
|
* Check that pip is installed using this command
|
||||||
```powershell
|
```powershell
|
||||||
pip3 -V
|
pip3 -V
|
||||||
```
|
```
|
||||||
* If this does not return a version, install [pip](https://pip.pypa.io/en/stable/installing/)
|
* If this does not return a version, install [pip](https://pip.pypa.io/en/stable/installing/)
|
||||||
- Install pytap2
|
* Install pytap2
|
||||||
```powershell
|
```powershell
|
||||||
pip3 install --upgrade pytap2
|
pip3 install --upgrade pytap2
|
||||||
```
|
```
|
||||||
- Install meshtastic:
|
* Install meshtastic:
|
||||||
```powershell
|
```powershell
|
||||||
pip3 install --upgrade meshtastic
|
pip3 install --upgrade meshtastic
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue