macOS Install

Installing the Nitrokey App 2 via uv

This is the simplest and fastest way to install the Nitrokey App 2 on macOS using uv, an extremely fast Python package manager.

  1. Install uv if it is not already installed:

    curl -LsSf https://astral.sh/uv/install.sh | sh
    

    Alternatively, if you have Homebrew:

    brew install uv
    
  2. Install the Nitrokey App:

    uv tool install nitrokeyapp
    

To update the app:

uv tool upgrade nitrokeyapp

To run the application:

nitrokeyapp

Installing the Nitrokey App 2 via Pipenv

This is an alternative way to install the Nitrokey App 2 on macOS.

  1. Install pipenv if it is not already installed.

  2. Create a work directory:

    mkdir nitrokeyapp
    
  3. Enter the directory:

    cd nitrokeyapp
    
  4. Install the app via pipenv:

    pipenv install nitrokeyapp
    

The app can be updated the following way:

Updating

  1. Enter the work directory:

    cd nitrokeyapp
    
  2. Update the app:

    pipenv update
    

Starting

To run the application:

  1. Enter the work directory:

    cd nitrokeyapp
    
  2. Run the app:

    pipenv run nitrokeyapp