-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- added and tested better mac support.. at least it's tested :-)
- Loading branch information
Showing
3 changed files
with
34 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/sh | ||
# complete installation of labjack-python support for mac osx | ||
|
||
wget --no-check-certificate https://labjack.com/sites/default/files/software/Exodriver_NativeUSB_Setup.zip | ||
unzip -l Exodriver_NativeUSB_Setup.zip | ||
unzip Exodriver_NativeUSB_Setup.zip | ||
open Exodriver_NativeUSB_Setup.pkg | ||
|
||
git clone https://github.com/labjack/LabJackPython.git | ||
cd LabJackPython | ||
python ./setup.py install | ||
cd .. | ||
|
||
rm -rf LabJackPython Exodriver_NativeUSB_Setup.* __MACOSX | ||
|
||
cat <<EOF | ||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * | ||
Labjack drivers installed - root and group:${LJGROUP} have access. | ||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * | ||
EOF |