Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more information to use a stable release instead of the master branch #2981

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docs/guide/installation/05_windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,12 @@ In order to be able to communicate with your USB device over a virtual COM port,
node --version
```
1. Choose a suitable directory for Zigbee2MQTT and copy all the files from the [Zigbee2MQTT repository](https://github.com/koenkk/zigbee2mqtt)
- if you prefer to use git (which you should), just clone the whole repository
- if you prefer to use git (which you should), just clone the whole repository and pick a release tag.(e.g. TAG=1.36.0)
```bash
git clone --depth 1 https://github.com/Koenkk/zigbee2mqtt/
cd zigbee2mqtt
git fetch --all --tags
git checkout tags/TAG # replace TAG with your TAG identifier from https://github.com/Koenkk/zigbee2mqtt/tags
```
- otherwise use the green `Clone or download` button to download the zip archive, then extract it
1. Change to the newly created directory and install dependencies with Node.js own package manager `npm`
Expand Down