File tree Expand file tree Collapse file tree 4 files changed +10
-285
lines changed
Expand file tree Collapse file tree 4 files changed +10
-285
lines changed Original file line number Diff line number Diff line change @@ -149,10 +149,9 @@ Installing
149149
150150You can install using pip or easy install by issuing the following
151151commands in a terminal window (make sure you have correct
152- permissions or a virtualenv currently running)::
152+ permissions or a virtualenv currently running):
153153
154- easy_install -U pymodbus
155- pip install -U pymodbus
154+ pip install -U pymodbus
156155
157156This will install a base version of pymodbus.
158157
@@ -175,10 +174,9 @@ Available options are:
175174- **development **, installs development tools needed to enable test/check of pymodbus changes.
176175
177176
178- Or to install a specific release::
177+ Or to install a specific release:
179178
180- pip install -U pymodbus==X.Y.Z
181- easy_install -U pymodbus==X.Y.Z
179+ pip install -U pymodbus==X.Y.Z
182180
183181Otherwise you can pull the trunk source and install from there::
184182
Original file line number Diff line number Diff line change @@ -18,18 +18,16 @@ The Windows IOCP reactor requires pywin32 build 205 or later.
1818Installation
1919-------------
2020
21- To install the package from pypi, use either easy_install or pip: :
21+ To install the package from pypi, use pip:
2222
23- pip install -U pymodbus
24- easy_install -U pymodbus
23+ pip install -U pymodbus
2524
26- Or to install a specific release::
25+ Or to install a specific release:
2726
28- pip install -U pymodbus==X.Y.Z
29- easy_install -U pymodbus==X.Y.Z
27+ pip install -U pymodbus==X.Y.Z
3028
3129As with other Python packages, the standard way of installing from source
32- is (as root or administrator)::
30+ is (as root or administrator):
3331
3432 https://github.com/riptideio/pymodbus.git
3533 git checkout master
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 55# --------------------------------------------------------------------------- #
66# initialization
77# --------------------------------------------------------------------------- #
8- try : # if not installed, install and proceed
9- from setuptools import find_packages , setup
10- except ImportError :
11- from ez_setup import use_setuptools
12- use_setuptools ()
13- from setuptools import find_packages , setup
8+ from setuptools import find_packages , setup
149try :
1510 from setup_commands import command_classes
1611except ImportError :
You can’t perform that action at this time.
0 commit comments