LJM Installation Instructions
Windows
Check the system requirements.
Run the LabJack Windows Installer. This installs LJM and all dependencies. If you run into installation issues, see the Windows Installer Troubleshooting (App Note).
Programmatic (silent) install
See Windows Setup Basic (Driver only).
macOS
Check the system requirements.
Run
labjack_ljm_software_<date>.pkg
. (For example:labjack_ljm_software_2019_02_14.pkg
)Follow the installer instructions.
Programmatic install
LJM can be programmatically installed. After downloading (see below for a programmatic download command using curl), the following example commands unzip the package and install LJM:
unzip labjack_ljm_software_2019_02_14.zip
cd labjack_ljm_software_2019_02_14
sudo installer -pkg labjack_ljm_software_2019_02_14.pkg -target /
MacOS 14 has introduced a breaking change to rpaths.
A fix for the time being is to add “/usr/local/lib” to your “DYLD_LIBRARY_PATH” environment variable.
This can be done by adding this line to your ~/.zprofile file:
export DYLD_LIBRARY_PATH=/usr/local/lib:$DYLD_LIBRARY_PATH
Linux
Both full installs and minimal installs are available. See what files are installed for more details.
The full installer follows the naming convention
labjack_ljm_software_<date>_<architecture>.tar.gz
. For example:labjack_ljm_software_2018_08_30_x86_64.tar.gz
The minimal installer follows the naming convention
labjack_ljm_minimal_<date>_<architecture>.tar.gz
. For example:labjack_ljm_minimal_2018_08_30_x86_64.tar.gz
Installation Instructions
Check the system requirements.
Download the tarball that matches your processor type. The command
uname -p
will display what processor you have.Un-tar and
cd
into the package:tar -xzf labjack_ljm_software_<date>_<architecture>.tar.gz
cd labjack_ljm_software_<date>_<architecture>
Run the installer:
sudo ./labjack_ljm_installer.run
Programmatic Download
The following curl
command demonstrates how to programmatically download LJM:
curl -sSLO https://files.labjack.com/installers/LJM/Linux/x64/minimal/beta/labjack_ljm_minimal_2020_03_30_x86_64_beta.tar.gz