switched shebangs to using virtualenv and added homebrew instructions

This commit is contained in:
Simon John 2019-08-26 11:00:26 +01:00
parent be3f7de842
commit 74a7e8c861
4 changed files with 8 additions and 3 deletions

View file

@ -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:

View file

@ -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

View file

@ -1,4 +1,4 @@
#!/usr/bin/python3 #!/usr/bin/env python3
""" """
Arduino-mk Makefile and project initialiser Arduino-mk Makefile and project initialiser

View file

@ -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)