diff options
| author | Sudar Muthu <sudar@sudarmuthu.com> | 2016-08-25 22:32:16 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-25 22:32:16 +0530 |
| commit | 7c28446e5e685bc01f8a1bfee87275701ad03c6a (patch) | |
| tree | bac95e549f74bcbc1cfe7e8eaf22ce6427d6dc78 /README.md | |
| parent | 0ec1489414f0bd7fbc9569d334984ef737c9f2a9 (diff) | |
| parent | 2dd7c567c03a343038a0d702b32aa94e2021873d (diff) | |
Merge pull request #449 from sovcik/master
PySerial installation for Windows updated
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -122,8 +122,20 @@ sudo port install py27-serial On Windows: -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) +You need to install Cygwin and its packages for Make, Perl and the following Serial library. + +Assuming you included Python in your Cygwin installation: + +1. download PySerial source package from [https://pypi.python.org/pypi/pyserial](https://pypi.python.org/pypi/pyserial) +2. extract downloaded package running +```tar xvzf dowloaded_package_name.tar.gz``` +3. navigate to extracted package folder +4. build and install Python module: + +``` +python setup.py build +python setup.py install +``` ## Usage |
