Install

ModelFox supports MacOS, Linux, and Windows on x86_64 and ARM64 architectures. Other options include Docker or building manually from source.

MacOS

Homebrew

Install the modelfox package from the homebrew tap:

brew install modelfoxdotdev/tap/modelfox

Linux

Ubuntu 21.04 (Hirsute Hippo)

# Add the modelfox gpg key. curl -fsSL https://pkgs.modelfox.dev/stable/ubuntu/hirsute.gpg | sudo apt-key add - # Add the modelfox repository. curl -fsSL https://pkgs.modelfox.dev/stable/ubuntu/hirsute.list | sudo tee /etc/apt/sources.list.d/modelfox.list # Install! sudo apt-get update && sudo apt-get install modelfox

Ubuntu 20.04 LTS (Focal Fossa)

# Add the modelfox gpg key. curl -fsSL https://pkgs.modelfox.dev/stable/ubuntu/focal.gpg | sudo apt-key add - # Add the modelfox repository. curl -fsSL https://pkgs.modelfox.dev/stable/ubuntu/focal.list | sudo tee /etc/apt/sources.list.d/modelfox.list # Install! sudo apt-get update && sudo apt-get install modelfox

Ubuntu 18.04 LTS (Bionic Beaver)

# Add the modelfox gpg key. curl -fsSL https://pkgs.modelfox.dev/stable/ubuntu/bionic.gpg | sudo apt-key add - # Add the modelfox repository. curl -fsSL https://pkgs.modelfox.dev/stable/ubuntu/bionic.list | sudo tee /etc/apt/sources.list.d/modelfox.list # Install! sudo apt-get update && sudo apt-get install modelfox

Debian Sid (unstable)

# Add the modelfox gpg key. curl -fsSL https://pkgs.modelfox.dev/stable/debian/sid.gpg | sudo apt-key add - # Add the modelfox repository. curl -fsSL https://pkgs.modelfox.dev/stable/debian/sid.list | sudo tee /etc/apt/sources.list.d/modelfox.list # Install! sudo apt-get update && sudo apt-get install modelfox

Debian Bullseye (testing)

# Add the modelfox gpg key. curl -fsSL https://pkgs.modelfox.dev/stable/debian/bullseye.gpg | sudo apt-key add - # Add the modelfox repository. curl -fsSL https://pkgs.modelfox.dev/stable/debian/bullseye.list | sudo tee /etc/apt/sources.list.d/modelfox.list # Install! sudo apt-get update && sudo apt-get install modelfox

Debian Buster (stable)

# Add the modelfox gpg key. curl -fsSL https://pkgs.modelfox.dev/stable/debian/buster.gpg | sudo apt-key add - # Add the modelfox repository. curl -fsSL https://pkgs.modelfox.dev/stable/debian/buster.list | sudo tee /etc/apt/sources.list.d/modelfox.list # Install! sudo apt-get update && sudo apt-get install modelfox

Debian Stretch (oldstable)

# Add the modelfox gpg key. curl -fsSL https://pkgs.modelfox.dev/stable/debian/stretch.gpg | sudo apt-key add - # Add the modelfox repository. curl -fsSL https://pkgs.modelfox.dev/stable/debian/stretch.list | sudo tee /etc/apt/sources.list.d/modelfox.list # Install! sudo apt-get update && sudo apt-get install modelfox

Alpine

# Add the modelfox rsa key. curl -fsSL https://pkgs.modelfox.dev/stable/alpine/modelfox.rsa | tee /etc/apk/keys/modelfox.rsa # Add the modelfox repository. echo "https://pkgs.modelfox.dev/stable/alpine" | tee /etc/apk/repositories # Install! apk add modelfox

Arch

Install the modelfox package from the AUR:

yay -S modelfox-bin

Amazon Linux 2

# Add the modelfox repository. sudo yum-config-manager --add-repo https://pkgs.modelfox.dev/stable/amazon-linux/2/modelfox.repo # Install! sudo yum install modelfox

Centos 7

# Add the modelfox repository. sudo yum-config-manager --add-repo https://pkgs.modelfox.dev/stable/centos/7/modelfox.repo # Install! sudo yum install modelfox

Centos 8

# Add the modelfox repository. sudo dnf config-manager --add-repo https://pkgs.modelfox.dev/stable/centos/8/modelfox.repo # Install! sudo dnf install modelfox

Fedora

# Add the modelfox repository. sudo dnf config-manager --add-repo https://pkgs.modelfox.dev/stable/fedora/modelfox.repo # Install! sudo dnf install modelfox

Nix

nix run github:modelfoxdotdev/modelfox

RHEL 8

# Add the modelfox repository. sudo dnf config-manager --add-repo https://pkgs.modelfox.dev/stable/rhel/8/modelfox.repo # Install! sudo dnf install modelfox

Windows

Scoop

Install the modelfox package from the scoop bucket:

scoop bucket add modelfox https://github.com/modelfoxdotdev/scoop.git scoop install modelfox

Other

Docker

Run the modelfoxdotdev/modelfox docker image from Docker Hub:

docker run --rm -it modelfoxdotdev/modelfox

Install Manually

If none of the above methods works for you, you can download the tarball for your CPU architecture and operating system from GitHub Releases. Untar the file and place the modelfox executable somewhere on your PATH. If you do this, please email us at [email protected] so we can consider supporting your preferred installation method.