switched shebangs to using virtualenv and added homebrew instructions
This commit is contained in:
parent
be3f7de842
commit
74a7e8c861
4 changed files with 8 additions and 3 deletions
|
@ -123,6 +123,11 @@ On Mac using MacPorts:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
sudo port install py35-serial
|
sudo port install py35-serial
|
||||||
|
|
||||||
|
# or if you prefer homebrew
|
||||||
|
|
||||||
|
brew install python3
|
||||||
|
pip3 install pyserial
|
||||||
```
|
```
|
||||||
|
|
||||||
On Windows:
|
On Windows:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import serial
|
import serial
|
||||||
import serial.tools.list_ports
|
import serial.tools.list_ports
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
"""
|
"""
|
||||||
Arduino-mk Makefile and project initialiser
|
Arduino-mk Makefile and project initialiser
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
# This script sends a program on a robotis board (OpenCM9.04 or CM900)
|
# This script sends a program on a robotis board (OpenCM9.04 or CM900)
|
||||||
# using the robotis bootloader (used in OpenCM IDE)
|
# using the robotis bootloader (used in OpenCM IDE)
|
||||||
|
|
Loading…
Add table
Reference in a new issue