Skip to content

Commit 7c28446

Browse files
authored
Merge pull request #449 from sovcik/master
PySerial installation for Windows updated
2 parents 0ec1489 + 2dd7c56 commit 7c28446

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

HISTORY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ I tried to give credit whenever possible. If I have missed anyone, kindly add it
99
- Fix: Updated CXXFLAGS_STD to match upstream 1.6 (issue #424) (https://github.com/calvinli)
1010
- Fix: Added support for attiny core's use of chip instead of cpu in submenus (https://github.com/straccio)
1111
- Fix: ARDUINO_VERSION can cope with the longer 1.6.10 version string (issue #444) (https://github.com/sej7278)
12+
- Tweak: Documentation for Windows updated to include installation of PySerial (https://github.com/sovcik)
1213

1314
### 1.5.1 (Debian version: 1.5-3) (2016-02-22)
1415

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,20 @@ sudo port install py27-serial
122122

123123
On Windows:
124124

125-
You need to install Cygwin and its packages for Make, Perl and the following Serial library
126-
or you can install it using the [pre-built package installer](https://pypi.python.org/pypi/pyserial)
125+
You need to install Cygwin and its packages for Make, Perl and the following Serial library.
126+
127+
Assuming you included Python in your Cygwin installation:
128+
129+
1. download PySerial source package from [https://pypi.python.org/pypi/pyserial](https://pypi.python.org/pypi/pyserial)
130+
2. extract downloaded package running
131+
```tar xvzf dowloaded_package_name.tar.gz```
132+
3. navigate to extracted package folder
133+
4. build and install Python module:
134+
135+
```
136+
python setup.py build
137+
python setup.py install
138+
```
127139

128140
## Usage
129141

0 commit comments

Comments
 (0)