Skip to content

Commit a3b71bb

Browse files
committed
Update README.md
1 parent 24c47df commit a3b71bb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,12 @@ Another option is to compile from the latest source on the GitHub repository:
3939
$ git clone git://github.com/autopilot-rs/autopy-rs.git
4040
$ cd autopy
4141
$ rustup default nightly
42-
$ pip install -U setuptools-rust
42+
$ pip install -r requirements.txt
4343
$ python setup.py build
4444
# python setup.py install
4545

46+
Additional instructions for installing from source on Windows are available [here](https://github.com/autopilot-rs/autopy/blob/master/scripts/windows-setup.md).
47+
4648
### Hello World
4749

4850
The following is the source for a "hello world" script in autopy. Running this
@@ -169,7 +171,7 @@ def find_image_example():
169171
needle = autopy.bitmap.Bitmap.open('needle.png')
170172
haystack = autopy.bitmap.Bitmap.open('haystack.png')
171173

172-
pos = barrel.find_bitmap(needle)
174+
pos = haystack.find_bitmap(needle)
173175
if pos:
174176
print("Found needle at: %s" % str(pos))
175177

0 commit comments

Comments
 (0)