@@ -2,20 +2,20 @@ Installation
22************
33
44Note: some commands below have `sudo` as first word.
5- It's required only on Linux or MacOSX .
6- Omit that prefix if you're on Windows.
5+ It's required only on Linux or Mac OS X .
6+ Omit the prefix if you're on Windows.
77
88Installing with pip
99~~~~~~~~~~~~~~~~~~~
1010If you just need IntelHex library installed as your
1111system python library
1212then it's better to use modern tool called ``pip``
1313(http://www.pip-installer.org/en/latest/)
14- to install with command:
14+ to install with the command:
1515
1616 sudo pip install intelhex
1717
18- Latest versions of Python interpreter (like 2.7.9, or 3.4.x and later)
18+ The latest versions of Python interpreter (like 2.7.9, or 3.4.x and later)
1919have pip in the standard installer/distribution.
2020
2121The simplest way to check whether you have pip installed
@@ -32,7 +32,7 @@ and run it as
3232
3333Download sources
3434~~~~~~~~~~~~~~~~
35- You can get archive with latest released code, docs and other files
35+ You can get archive with the latest released code, docs and other files
3636from PyPI:
3737
3838https://pypi.python.org/pypi/IntelHex
@@ -41,11 +41,11 @@ Also IntelHex may be downloaded from:
4141
4242https://launchpad.net/intelhex/+download
4343
44- You can get archive with unreleased code from GitHub page:
44+ You can get the archive with the unreleased code from GitHub page:
4545
4646https://github.com/bialix/intelhex
4747
48- Use corresponding menu item in the right-hand side bar on that page
48+ Use the corresponding menu item in the right-hand side bar on that page
4949(e.g. "Download ZIP").
5050
5151
@@ -64,19 +64,19 @@ Install from sources
6464~~~~~~~~~~~~~~~~~~~~
6565IntelHex has got stadard setup.py installation script.
6666Assuming Python is properly installed on your platform,
67- installation should just require running the following command
67+ installation should require just running of the following command
6868from the root directory of the sources::
6969
7070 sudo python setup.py install
7171
7272This will install the intelhex package into your system's site-packages
7373directory and place the helper scripts in your Python site-packages
74- binaries directory. After that is done, any other Python scripts or modules
74+ binaries directory. Once it is done, any other Python scripts or modules
7575should be able to import the package using::
7676
7777 >>> from intelhex import IntelHex
7878
79- The scripts should be in your PATH so that they can be called from anywhere
79+ The scripts should be in your PATH so that they could be called from anywhere
8080in the file system.
8181
8282See the Python distutils website for more information, or try typing,
@@ -90,7 +90,7 @@ for helper scripts as hex2bin.py, bin2hex.py and other mentioned in this
9090documentation (see section Convenience Scripts).
9191
9292You can find these scripts in your python Script directory
93- (usually `C:\\PythonXY\\Scripts`). You need either create batch file to run them,
93+ (usually `C:\\PythonXY\\Scripts`). You need either to create batch file to run them,
9494or use Python interpreter:
9595
9696 python C:\\PythonXY\\Scripts\\hex2bin.py ...
0 commit comments