Skip to main content

Joulescope

Welcome to the Joulescope™ User Interface software repo! Joulescope is an affordable, precision energy analyzer that enables you to build better products. Joulescope™ accurately and simultaneously measures the voltage and current supplied to your target device, and it then computes power and energy. For more information on Joulescope, see www.joulescope.com.

This repository contains the Joulescope graphical User Interface (UI). The UI runs on a host computer and communicates with the Joulescope device over USB. The application source code is available at https://github.com/jetperch/pyjoulescope_ui.

The software is highly configurable. Here is the Multimeter view on Windows 11:

And here is the Oscilloscope view on Windows 11:

Oscilloscope View

For more information, see:

Quick start using official distribution

We provide official distributions for Windows, macOS and Ubuntu 22.04LTS.

Visit the main download page for the latest stable build.

You can download the latest and previous alpha, beta, and stable builds here.

Linux users can alternatively install the Flatpak bundle. See docs/flatpak.md, which also covers the host udev rules required for USB device access.

Run as python package

The Joulescope UI is a python package which you can install for pypi or run directly from source.

Install Python

The Joulescope User Interface requires Python 3.9 or newer. We recommend Python 3.11. Install Python 3.9+ on your system and then verify your python version at the terminal or command line:

> python -VV
Python 3.11.4 (tags/v3.11.4:d2340ef, Jun  7 2023, 05:45:37) [MSC v.1934 64 bit (AMD64)]

Ensure that you have Python 3.9 or newer and 64-bit. For macOS, you can also use Homebrew to install python.

Configure virtualenv [optional]

Although not required, using virtualenv avoids dependency conflicts, especially if you use your python installation for other programs. Using virtualenv ensures that the Joulescope software has the right dependencies without changing the rest of your system.

For Windows:

Install virtualenv and create a new virtual environment:

python -v venv c:\venv\joulescope

Activate the virtual environment whenever you start a new terminal:

c:\venv\joulescope\Scripts\activate

For POSIX including (Linux, macOS):

Install virtualenv and create a new virtual environment:

python -m venv ~/venv/joulescope

Activate the virtual environment whenever you start a new terminal:

. ~/venv/joulescope/bin/activate

Install using pypi

Installation from pypi is easy:

python -m pip install -U --upgrade-strategy=eager joulescope_ui

If you just want to run the latest released version of the UI.

For Linux, you need to perform additional steps. Here are steps for Ubuntu:

sudo apt install libudev-dev libxcb-cursor0
wget https://raw.githubusercontent.com/jetperch/joulescope_driver/main/99-joulescope.rules
sudo cp 99-joulescope.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules

If you receive the error: Could not load the Qt platform plugin "xcb" in "" even though it was found, you need to install additional dependencies. First identify the missing dependencies:

export QT_DEBUG_PLUGINS=1
python3 -m joulescope_ui

Then install them using apt or your distribution's package manager. The Joulescope UI uses Qt6, and you can find the Qt6 dependencies here.

Run

Whenever you want to run the Joulescope UI:

python -m joulescope_ui

Depending upon your system, you may need to replace "python" with "python3" or the full path to your python executable.

The joulescope package also contains an executable, so you can often type:

joulescope ui

Developer Howto

Clone and configure the Joulescope UI from the terminal or command line:

git clone https://github.com/jetperch/pyjoulescope_ui.git
cd pyjoulescope_ui
python -m pip install -U --upgrade-strategy eager -r requirements.txt

Build the QT resources:

python setup.py sdist

As long as the current directory is the source directory, you can run:

python -m joulescope_ui

If you want to run from another directory, you will need to add the source to your PYTHONPATH environment variable.

Windows using command prompt:

set PYTHONPATH={C:\path\to\repos}\pyjoulescope_ui

Windows using PowerShell:

$env:PYTHONPATH = "{C:\path\to\repos}\pyjoulescope_ui"

POSIX shells (most Linux, macOS with homebrew):

export PYTHONPATH={path/to/repos}/pyjoulescope_ui

To also distribute the UI on macOS, you need to install XCode and then configure node. If using homebrew:

brew install node
npm install

You will also need to install the signing certificate using Applications/Utilities/Keychain Access.

If you also want to simultaneously develop the Joulescope UI and the Joulescope driver, you can include the joulescope_driver in your PYTHONPATH and build in place:

pip3 uninstall joulescope
cd {path/to/repos}
git clone https://github.com/jetperch/joulescope_driver.git
cd joulescope_driver
pip3 install -U -r requirements.txt
python setup.py build_ext --inplace && python -m unittest
git clone https://github.com/jetperch/pyjoulescope.git
cd pyjoulescope
pip3 install -U -r requirements.txt    
python setup.py build_ext --inplace && python -m unittest

You should then modify your python path to find both the UI and driver source paths. On Windows:

set PYTHONPATH={C:\path\to\repos}\joulescope_driver;C:\path\to\repos}\pyjoulescope;{C:\path\to\repos}\pyjoulescope_ui

and on POSIX (Linux, Mac OS X with homebrew):

export PYTHONPATH={path/to/repos}/pyjoulescope:{path/to/repos}/pyjoulescope_ui

License

All pyjoulescope_ui code is released under the permissive Apache 2.0 license. See the License File for details.

Release files for joulescope-ui 1.7.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for joulescope-ui 1.7.1
File Size Uploaded
joulescope_ui-1.7.1.tar.gz 4.3 MB Details

Release files / joulescope_ui-1.7.1.tar.gz

Download URL joulescope_ui-1.7.1.tar.gz
Size 4.3 MB
Tags Source
SHA-256 checksum
How to use checksums
1f1b0f61b5cb8566048085adb502b0aa9a53e61f825923c28635833270bda4fc
BLAKE2b-256 checksum
How to use checksums
7a145c4149458be6afb55270d6e99864edd6a3185529acdbc6dc432cdd2194ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 15, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

1.7.1 This release

1 release file

1.7.0

1 release file

1.6.5

1 release file

1.6.4

1 release file

1.6.3

1 release file

1.6.2

1 release file

1.6.1

1 release file

1.6.0

1 release file

1.5.5

1 release file

1.5.4

1 release file

1.5.3

1 release file

1.5.2

1 release file

1.5.1

1 release file

1.4.2

1 release file

1.4.1

1 release file

1.4.0

1 release file

1.3.9

1 release file

1.3.8

1 release file

1.3.7

1 release file

1.3.6

1 release file

1.3.5

1 release file

1.3.4

1 release file

1.3.3

1 release file

1.3.2

1 release file

1.3.1

1 release file

1.3.0

1 release file

1.2.6

1 release file

1.2.5

1 release file

1.2.4

1 release file

1.2.3

1 release file

1.2.2

1 release file

1.2.1

1 release file

1.2.0

1 release file

1.1.12

1 release file

1.1.11

1 release file

1.1.10

1 release file

1.1.9

1 release file

1.1.8

1 release file

1.1.7

1 release file

1.1.6

1 release file

1.1.5

1 release file

1.1.4

1 release file

1.1.3

1 release file

1.1.2

1 release file

1.1.1

1 release file

1.1.0

1 release file

1.0.62

1 release file

1.0.61

1 release file

1.0.60

1 release file

1.0.59

1 release file

1.0.58

1 release file

1.0.57

1 release file

1.0.56

1 release file

1.0.55

1 release file

1.0.53

1 release file

1.0.52

1 release file

1.0.51

1 release file

1.0.50

1 release file

1.0.49

1 release file

1.0.48

1 release file

1.0.47

1 release file

1.0.46

1 release file

1.0.45

1 release file

1.0.44

1 release file

1.0.42

1 release file

1.0.40

1 release file

1.0.39

1 release file

1.0.38

1 release file

1.0.37

1 release file

1.0.36

1 release file

1.0.35

1 release file

1.0.34

1 release file

1.0.33

1 release file

1.0.32

1 release file

1.0.31

1 release file

1.0.30

1 release file

1.0.29

1 release file

1.0.28

1 release file

1.0.27

1 release file

1.0.26

1 release file

1.0.25

1 release file

1.0.24

1 release file

1.0.23

1 release file

1.0.22

1 release file

1.0.19

1 release file

1.0.18

1 release file

1.0.17

1 release file

1.0.16

1 release file

1.0.15

1 release file

1.0.14

1 release file

1.0.12

1 release file

1.0.11

1 release file

1.0.10

1 release file

1.0.9

1 release file

1.0.8

1 release file

1.0.7

1 release file

1.0.6

1 release file

1.0.5

1 release file

1.0.4

1 release file

1.0.2

1 release file

1.0.1

1 release file

0.10.13

1 release file

0.10.12

1 release file

0.10.11

1 release file

0.10.9

1 release file

0.10.8

1 release file

0.9.11

1 release file

0.9.10

1 release file

0.9.7

1 release file

0.9.3

1 release file

0.9.2

1 release file

0.8.16

1 release file

0.8.14

1 release file

0.8.12

1 release file

0.8.11

1 release file

0.8.9

1 release file

0.8.6

1 release file

0.8.3

1 release file

0.7.0

1 release file

0.6.10

1 release file

0.6.8

1 release file

0.6.5

1 release file

0.6.4

1 release file

0.5.1

1 release file

0.5.0

1 release file

0.4.6

1 release file

0.4.5

1 release file

0.4.4

1 release file

0.4.3

1 release file

0.4.1

1 release file

0.4.0

1 release file

0.3.0

1 release file

0.2.7

1 release file

0.2.6

1 release file

0.2.4

1 release file

0.2.3

1 release file

0.2.2

1 release file

0.1.5

1 release file

0.1.4

1 release file

0.1.3

1 release file

0.1.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page