Krux Installer is a GUI based tool to flash Krux without typing any command in terminal for flash the firmware onto the device.
Available for:
- Linux:
- Debian-like;
- Fedora-like;
- Windows;
- MacOS:
- intel processors;
- arm64 processors (M1/M2/M3).
Make sure you have python:
python --versionGenerally, all Linux come with python.
Follow the instructions at python.org
Before installing krux-installer source code, you will need prepare the system:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"brew install pythonand add this line to your ~/.zshrc:
alias python=python3Python's ssl module relies on OpenSSL for cryptographic operations.
Ensure that OpenSSL is installed on your system and is compatible with the
Python version you're using.
Since we expect that you're using the Python installed with Homebrew, it's recommended to install OpenSSL through Homebrew if it's not already installed:
brew install opensslAfter installing OpenSSL, make sure it's linked correctly:
brew link --force opensslThis ensures that the OpenSSL libraries are available in the expected locations that Python can find and use.
Library paths on MacOS involves verifying that the environment variables and system
configurationsare correctyly set to find the necessary libraries, such as OpenSSL,
which is crucial for the ssl module in Python.
On MacOS, the dynamic linker tool dyld uses environment variabes to locate shared
libraries. The primary environment variable for specifying library paths is
DYLD_LIBRARY_PATH.
Adding the lines below to your ~/.zshrc (or similar) the DYLD_LIBRARY_PATH
will be set each time you open a new terminal session (and therefore the OpenSSL
libraries libcrypto.dylib and libssl.dylib will can be found):
OPENSSL_MAJOR_VERSION=`openssl --version | awk '{ print $2}' | cut -d . -f1`
OPENSSL_FULL_VERSION=`openssl --version | awk ' { print $2}'`
export DYLD_LIBRARY_PATH="/opt/homebrew/Cellar/openssl@$OPENSSL_MAJOR_VERSION/$OPENSSL_FULL_VERSION/lib:$DYLD_LIBRARY_PATH"Make sure you have poetry installed:
python -m pipx install poetry
If you have problems with installation, make sure to properly configure its options.
Clone the repository:
git clone --recurse-submodules https://github.com/selfcustody/krux-installer.gitInstall python dependencies:
poetry install
If already cloned the repo without using --recurse-submodules,
use the command below to clone the needed submodules:
git submodule update --initKrux-Installer uses poe task manager for formatting, linting, tests,
coverage and build.
poetry run poepoetry run poe formatpoetry run poe lintpoetry run poe testFor systems without a window manager:
# Linux only
poetry run poe test --no-xvfbYou can see all coverage results opening you browser and type
file:///<folder>/krux-installer/htmlcov/index.html (assuming
folder is where you placed the krux-installer project).
poetry run poe build-linuxpoetry run poe build-macospoetry run poe build-winIt will export all project in a
one-file binary:
- linux:
./dist/krux-installer - macOS:
./dist/krux-installer.app/Contents/MacOS/krux-installer - windows:
./dist/krux-installer.exe
To more options see .ci/create-spec.py against the PyInstaller options.
