Skip to content

Software Installation

Software Installation

Prerequisites

Before installation, ensure your system meets the requirements outlined in the Introduction page.

List of deliverables

  • SDK installer
    • wave_<model>_<high/mid>-<version>-py3-none-any.whl
    • EULA.pdf
  • bundle
    • cpsrt.zip
    • codemeter_api-9.0.500-py3-none-any.whl

Install CodeMeter and CPSRT library

Before using the SDK, you'll need to install two licensing components:

  • CodeMeter – Used to activate and manage your license
  • CodeMeter Protection Suite Runtime (CPSRT) library – Enables the SDK to check that a valid license is present

Download

CodeMeter Runtime must be downloaded directly from Wibu-Systems. Download the CodeMeter User Runtime for Linux (64-bit DEB package) from the official Wibu-Systems User Software page:

Validated configuration

The components included with the SDK package that interface with CodeMeter Runtime have been validated for use with CodeMeter Runtime 9.0. This configuration represents the validated environment for the provided SDK package.

If a different version of CodeMeter Runtime is used, version selection, compatibility verification, and related maintenance are outside the scope of the validated configuration.

Install

sudo apt update
# Install the CodeMeter Runtime downloaded from Wibu-Systems (replace with your downloaded filename)
sudo dpkg -i ./codemeter_<version>_amd64.deb
# Fix missing dependencies
sudo apt-get install -f
unzip cpsrt.zip
sudo cp lin/x64/libcpsrt.so /usr/lib/x86_64-linux-gnu
sudo mkdir -p /usr/lib/x86_64-linux-musl
sudo cp lin/x64-musl/libcpsrt.so /usr/lib/x86_64-linux-musl

Verify Installation

After installation, verify that CodeMeter is running:

sudo systemctl status codemeter

The service should show as active (running).


Previous: Introduction