Skip to content
This repository has been archived by the owner on Nov 14, 2020. It is now read-only.

Installing Flock Agent

Micah Lee edited this page Dec 2, 2019 · 4 revisions

Install Flock Agent on macOS

The simplest way to install Flock Agent, and to ensure you get automatic updates, is to use Homebrew. First install Homebrew if you don't already have it. Then open the Terminal app and run:

# Add the First Look Media tap
brew tap firstlookmedia/homebrew-firstlookmedia

# Install Flock Agent
brew cask install flock-agent

If you prefer to install Flock Agent without Homebrew, download and install the latest version from the GitHub releases.

Then launch Flock from /Applications.

Install Flock Agent in Linux

Debian or Ubuntu

Make sure you have apt-transport-https installed, and add the FLM code repository key:

sudo apt update
sudo apt install -y curl gnupg apt-transport-https
curl -L https://packagecloud.io/firstlookmedia/code/gpgkey | sudo apt-key add -

Add the repository, depending on your operating system:

  • Ubuntu 19.04 (disco)
    echo "deb https://packagecloud.io/firstlookmedia/code/ubuntu/ disco main" | sudo tee -a /etc/apt/sources.list.d/firstlookmedia_code.list
    
  • Ubuntu 19.10 (eoan)
    echo "deb https://packagecloud.io/firstlookmedia/code/ubuntu/ eoan main" | sudo tee -a /etc/apt/sources.list.d/firstlookmedia_code.list
    
  • Debian 10 (buster)
    echo "deb https://packagecloud.io/firstlookmedia/code/debian/ buster main" | sudo tee -a /etc/apt/sources.list.d/firstlookmedia_code.list
    
  • Debian 11 (bullseye)
    echo "deb https://packagecloud.io/firstlookmedia/code/debian/ bullseye main" | sudo tee -a /etc/apt/sources.list.d/firstlookmedia_code.list
    

Install Flock Agent:

sudo apt update
sudo apt install -y flock-agent

Fedora

We have repositories for Fedora 30 and 31. Add this repository following these instructions, or by running this script:

curl -s https://packagecloud.io/install/repositories/firstlookmedia/code/script.rpm.sh | sudo bash

Install GPG Sync:

sudo dnf install -y flock-agent

Build from source

If you'd like to build from source, follow the build instructions.