Install OONI Probe CLI

Once installed, OONI Probe runs tests automatically every day. For details, read the OONI Probe CLI user guide.

Debian / Ubuntu

  1. Install the GPG key:

    sudo gpg --no-default-keyring --keyserver hkp://keyserver.ubuntu.com --keyring /etc/apt/keyrings/ooni-apt-keyring.gpg --recv-keys 'B5A08F01796E7F521861B449372D1FF271F2DD50'
  2. You can choose how to fetch OONI Probe:

    A) Using HTTP. This is the recommended option.

    echo "deb [signed-by=/etc/apt/keyrings/ooni-apt-keyring.gpg] https://deb.ooni.org/ unstable main" | sudo tee /etc/apt/sources.list.d/ooniprobe.list

    B) Using Tor. This is an alternative option in case the HTTP repository is not reachable. This requires running the tor daemon on your system.

    sudo apt-get install tor apt-transport-tor
    echo "deb [signed-by=/etc/apt/keyrings/ooni-apt-keyring.gpg] tor+http://deb.ooni.org/ unstable main" | sudo tee /etc/apt/sources.list.d/ooniprobe.list
  3. Finally, update the package list and install OONI Probe

    sudo apt-get update
    sudo apt-get install ooniprobe-cli

macOS (Homebrew)

  1. Install Homebrew.

    Follow the instructions at brew.sh.

  2. Install ooniprobe.

    brew install ooniprobe
  3. Start automatic daily run.

    ooniprobe autorun start

Back to all install options