From 74a7e8c861850f31a02fabcaaf2beee8dc9b66e8 Mon Sep 17 00:00:00 2001 From: Simon John <git@the-jedi.co.uk> Date: Mon, 26 Aug 2019 11:00:26 +0100 Subject: [PATCH] switched shebangs to using virtualenv and added homebrew instructions --- README.md | 5 +++++ bin/ard-reset-arduino | 2 +- bin/ardmk-init | 2 +- bin/robotis-loader | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ebf19f9..52cc5b5 100644 --- a/README.md +++ b/README.md @@ -123,6 +123,11 @@ On Mac using MacPorts: ```sh sudo port install py35-serial + +# or if you prefer homebrew + +brew install python3 +pip3 install pyserial ``` On Windows: diff --git a/bin/ard-reset-arduino b/bin/ard-reset-arduino index b015b0f..b5704ac 100755 --- a/bin/ard-reset-arduino +++ b/bin/ard-reset-arduino @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import serial import serial.tools.list_ports diff --git a/bin/ardmk-init b/bin/ardmk-init index e79170c..27bb8a0 100755 --- a/bin/ardmk-init +++ b/bin/ardmk-init @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 """ Arduino-mk Makefile and project initialiser diff --git a/bin/robotis-loader b/bin/robotis-loader index 3f3c21b..be37d14 100755 --- a/bin/robotis-loader +++ b/bin/robotis-loader @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 # This script sends a program on a robotis board (OpenCM9.04 or CM900) # using the robotis bootloader (used in OpenCM IDE)