diff options
| author | Sudar <sudar@sudarmuthu.com> | 2015-04-04 06:24:39 +0530 |
|---|---|---|
| committer | Sudar <sudar@sudarmuthu.com> | 2015-04-04 06:24:39 +0530 |
| commit | 87a9e7f0cb59dc493e6bfa26505a6981cc151e20 (patch) | |
| tree | 46a4e0e225117af4592403738eeaab3a59b448a0 | |
| parent | 10ac2d9c124fc6f7d359082353016c7f28fb840a (diff) | |
Tweak pyserial installation instructions
| -rw-r--r-- | README.md | 35 |
1 files changed, 19 insertions, 16 deletions
@@ -70,11 +70,27 @@ to build an RPM. ## Requirements +### Arduino IDE + You need to have the Arduino IDE. You can either install it through the installer or download the distribution zip file and extract it. +### pySerial + The Makefile also delegates resetting the board to a short Python program. -You'll need to install `pySerial` to use it though. +You'll need to install `[pySerial](https://pypi.python.org/pypi/pyserial)` to use it though. + +On most systems you should be able to install it using either `pip` or `easy_install`. + +```sh +pip install pyserial + +# or if you prefer easy_install + +easy_install -U pyserial +``` + +If you prefer to install it as a package, then you can do that as well. On Debian or Ubuntu: @@ -102,21 +118,8 @@ sudo port install py27-serial On Windows: -You need to install Cygwin and its packages for Make, Perl and the following Serial library. - -```sh -pySerial can be downloaded from PyPi -``` - -On other systems: - -```sh -pip install pyserial - -# or - -easy_install -U pyserial -``` +You need to install Cygwin and its packages for Make, Perl and the following Serial library +or you can install it using the [pre-built package installer](https://pypi.python.org/pypi/pyserial) ## Usage |
