Skip to content

Latest commit

 

History

History
67 lines (52 loc) · 1021 Bytes

installing.md

File metadata and controls

67 lines (52 loc) · 1021 Bytes
layout title parent grand_parent
default
Specific installation instructions
How To
OpenAF docs

Specific installation instructions

Unix (x86 based)

$ mkdir oaf && cd oaf
$ wget -O - https://openaf.io/unix64/install.sh | sh
$ ./oafc

Windows (64-bit)

C:\> mkdir oaf
C:\> cd oaf
C:\oaf> curl https://openaf.io/win64/install.bat -o install.bat
C:\oaf> install.bat
C:\oaf> oafc

Mac OS (Intel based)

$ mkdir oaf && cd oaf
$ curl -o install.sh https://openaf.io/mac64/install.sh
$ sh install.sh
$ ./oafc

Mac OS (Apple silicon based)

$ mkdir oaf && cd oaf
$ curl -o install.sh https://openaf.io/macarm/install.sh 
$ sh install.sh
$ ./oafc

Docker

$ docker run --rm -ti openaf/openaf
/openaf # oafc

Unix (ARM 64)

$ mkdir oaf && cd oaf
$ wget -O - https://openaf.io/arm64/install.sh | sh
$ oafc

Unix (ARM 32)

$ mkdir oaf && cd oaf
$ wget -O - https://openaf.io/arm32/install.sh | sh
$ oafc