You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pymodbus REPL comes with many handy features such as payload decoder
137
+
Pymodbus REPL comes with many handy features such as payload decoder
138
138
to directly retrieve the values in desired format and supports all
139
139
the diagnostic function codes directly .
140
140
@@ -158,7 +158,7 @@ This will install a base version of pymodbus.
158
158
To install pymodbus with options run:
159
159
160
160
pip install -U pymodbus[<option>,...]
161
-
161
+
162
162
Available options are:
163
163
164
164
- **repl**, installs pymodbus REPL.
@@ -181,8 +181,8 @@ Otherwise you can pull the trunk source and install from there::
181
181
git clone git://github.com/riptideio/pymodbus.git
182
182
cd pymodbus
183
183
pip install -r requirements.txt
184
-
185
-
184
+
185
+
186
186
To get latest release (for now v2.5.3 with Python 2.7 support)::
187
187
188
188
git checkout master
@@ -193,12 +193,12 @@ To get bleeding edge::
193
193
194
194
To get a specific version:
195
195
196
-
git checkout tags/vX.Y.Z -b vX.Y.Z
196
+
git checkout tags/vX.Y.Z -b vX.Y.Z
197
197
198
198
Then::
199
199
pip install -r requirements.txt
200
200
pip install -e .
201
-
201
+
202
202
This installs pymodbus in your virtual environment with pointers directly to the pymodbus directory, so any change you make is immediately available as if installed.
203
203
204
204
Either method will install all the required dependencies
@@ -212,7 +212,7 @@ The repository contains a number of important branches and tags.
212
212
* **master** is where are releases are kept.
213
213
* All releases are tagged with **vX.Y.Z** (e.g. v2.5.3)
214
214
* All prereleases are tagged with **vX.Y.ZrcQ** (e.g. v3.0.0.0rc1)
215
-
215
+
216
216
If a maintenance release of an old version is needed (e.g. v2.5.4),
217
217
the release tag is used to create a branch with the same name,
0 commit comments