Skip to content

Latest commit

 

History

History
62 lines (51 loc) · 1.85 KB

installation.md

File metadata and controls

62 lines (51 loc) · 1.85 KB
layout title permalink nav_order
page
Installation
/installation/
2

minimal footprint

# Installation Gefyra is tested under Windows, MacOS and Linux. The command line tool can be installed with a binary executable. Please find your preferred operating system below. {: .fs-6 .fw-300 }

Install Gefyra on MacOS

Darwin AMD64

Homebrew

brew tap gefyrahq/gefyra
brew install gefyra

Manual Installation

  1. Download and extract the binary executable
GEFYRA=$(curl -L -s https://api.github.com/repos/gefyrahq/gefyra/releases/latest | grep '"browser_download_url": ".*darwin-amd64.*"' | grep -Eo "(http|https)://[a-zA-Z0-9./?=_%:-]*") && curl -LO $GEFYRA && unzip -o $(echo $GEFYRA | grep -oE '[^/]+$') gefyra
  1. Make the Gefyra binary executable
chmod +x ./gefyra
  1. Move the Gefyra binary to a location on your system PATH
sudo mv ./gefyra /usr/local/bin/gefyra
sudo chown root: /usr/local/bin/gefyra

Darwin ARM64

Gefyra is currently not tested on ARM64 and does potentially not work at the moment.

Todo {: .label .label-yellow }

Install Gefyra on Linux

GEFYRA=$(curl -L -s https://api.github.com/repos/gefyrahq/gefyra/releases/latest | grep '"browser_download_url": ".*linux.*"' | grep -Eo "(http|https)://[a-zA-Z0-9./?=_%:-]*") && curl -LO $GEFYRA && unzip -o $(echo $GEFYRA | grep -oE '[^/]+$') gefyra && sudo install -o root -g root -m 0755 gefyra /usr/local/bin/gefyra

Install Gefyra on Windows

There is currently no binary file for Windows available. Please use the Python package index below.

Todo {: .label .label-yellow }

Using Python Package Index

You can install Gefyra with pip:

pip install gefyra --upgrade

https://pypi.org/project/gefyra/