github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/DOWNLOAD.md (about)

     1  <h1>Download Murex</h1>
     2  
     3  [![Version](version.svg)](DOWNLOAD.md)
     4  
     5  <h2>Table of Contents</h2>
     6  
     7  <div id="toc">
     8  
     9  - [Download Links](#download-links)
    10    - [Darwin (macOS)](#darwin-macos)
    11    - [Linux](#linux)
    12    - [Windows](#windows)
    13    - [BSD's](#bsds)
    14      - [DragonflyBSD](#dragonflybsd)
    15      - [FreeBSD](#freebsd)
    16      - [NetBSD](#netbsd)
    17      - [OpenBSD](#openbsd)
    18    - [Solaris](#solaris)
    19    - [Plan 9](#plan-9)
    20  - [Install Instructions](#install-instructions)
    21    - [Linux / UNIX / macOS Instructions](#linux--unix--macos-instructions)
    22    - [Windows Instructions](#windows-instructions)
    23  
    24  </div>
    25  
    26  ## Download Links
    27  
    28  Below are the instructions to download a pre-compiled binary via HTTPS. If you
    29  wish to install from source or use your preferred package manager, then please
    30  refer to the [INSTALL](INSTALL.md) page for further instructions.
    31  
    32  ### Darwin (macOS)
    33  
    34  The `arm64` builds support the ARM-based M1 processor. Older Macs will need to
    35  run `amd64`. Murex is also available on Homebrew and MacPorts.
    36  
    37  * [murex-darwin-amd64.gz](https://nojs.murex.rocks/bin/latest/murex-darwin-amd64.gz)
    38  * [murex-darwin-arm64.gz](https://nojs.murex.rocks/bin/latest/murex-darwin-amd64.gz)
    39  
    40  ### Linux
    41  
    42  * [murex-linux-386.gz](https://nojs.murex.rocks/bin/latest/murex-linux-386.gz)
    43  * [murex-linux-amd64.gz](https://nojs.murex.rocks/bin/latest/murex-linux-amd64.gz)
    44  * [murex-linux-arm.gz](https://nojs.murex.rocks/bin/latest/murex-linux-arm.gz)
    45  * [murex-linux-arm64.gz](https://nojs.murex.rocks/bin/latest/murex-linux-arm64.gz)
    46  
    47  ### Windows
    48  
    49  * [murex-windows-386.exe.zip](https://nojs.murex.rocks/bin/latest/murex-windows-386.exe.zip)
    50  * [murex-windows-amd64.exe.zip](https://nojs.murex.rocks/bin/latest/murex-windows-amd64.exe.zip)
    51  
    52  ### BSD's
    53  
    54  #### DragonflyBSD
    55  * [murex-dragonfly-amd64.gz](https://nojs.murex.rocks/bin/latest/murex-dragonfly-amd64.gz)
    56  
    57  #### FreeBSD
    58  
    59  * [murex-freebsd-386.gz](https://nojs.murex.rocks/bin/latest/murex-freebsd-386.gz)
    60  * [murex-freebsd-amd64.gz](https://nojs.murex.rocks/bin/latest/murex-freebsd-amd64.gz)
    61  * [murex-freebsd-arm.gz](https://nojs.murex.rocks/bin/latest/murex-freebsd-arm.gz)
    62  * [murex-freebsd-arm64.gz](https://nojs.murex.rocks/bin/latest/murex-freebsd-arm64.gz)
    63  
    64  #### NetBSD
    65  
    66  * [murex-netbsd-386.gz](https://nojs.murex.rocks/bin/latest/murex-netbsd-386.gz)
    67  * [murex-netbsd-amd64.gz](https://nojs.murex.rocks/bin/latest/murex-netbsd-amd64.gz)
    68  * [murex-netbsd-arm.gz](https://nojs.murex.rocks/bin/latest/murex-netbsd-arm.gz)
    69  * [murex-netbsd-arm64.gz](https://nojs.murex.rocks/bin/latest/murex-netbsd-arm64.gz)
    70  
    71  #### OpenBSD
    72  
    73  * [murex-openbsd-386.gz](https://nojs.murex.rocks/bin/latest/murex-openbsd-386.gz)
    74  * [murex-openbsd-amd64.gz](https://nojs.murex.rocks/bin/latest/murex-openbsd-amd64.gz)
    75  * [murex-openbsd-arm.gz](https://nojs.murex.rocks/bin/latest/murex-openbsd-arm.gz)
    76  * [murex-openbsd-arm64.gz](https://nojs.murex.rocks/bin/latest/murex-openbsd-arm64.gz)
    77  
    78  ### Solaris
    79  
    80  This build should be treated as experimental however unlike the other
    81  experimental builds (Plan 9 and Windows), Solaris is at least POSIX compliant
    82  so expect fewer issues than on the non-POSIX platforms.
    83  
    84  * [murex-solaris-amd64.gz](https://nojs.murex.rocks/bin/latest/murex-solaris-amd64.gz) 
    85  
    86  ### Plan 9
    87  
    88  Plan9 is untested. The code compiles and it is syscall compatible with Plan9
    89  operating systems, however you may experience bugs using Murex on Plan9. If
    90  you do encounter any issues then please raise them at:
    91  [github.com/lmorg/murex/issues](https://github.com/lmorg/murex/issues)
    92  
    93  * [murex-plan9-386.gz](https://nojs.murex.rocks/bin/latest/murex-plan9-386.gz)
    94  * [murex-plan9-amd64.gz](https://nojs.murex.rocks/bin/latest/murex-plan9-amd64.gz)
    95  * [murex-plan9-arm.gz](https://nojs.murex.rocks/bin/latest/murex-plan9-arm.gz)
    96  
    97  ## Install Instructions
    98  
    99  ### Linux / UNIX / macOS Instructions
   100  
   101  Please download the appropriate `.gz` file from the list above, one that
   102  matches both your OS and CPU architecture.
   103  
   104  For example, to download a 64bit version for Linux:
   105  
   106  ```
   107  wget https://nojs.murex.rocks/bin/latest/murex-linux-amd64.gz
   108  gunzip murex-linux-amd64.gz
   109  chmod +x murex-linux-amd64
   110  ./murex-linux-amd64
   111  ```
   112  
   113  > macOS builds are listed as [darwin](https://en.wikipedia.org/wiki/Darwin_(operating_system))
   114  > as per the name of Apple have given to their [underlying OS](https://en.wikipedia.org/wiki/MacOS#Architecture).
   115  
   116  Most of these builds have received _some_ level of user acceptance testing with
   117  Linux and macOS builds receiving the most attention, because that's what we use
   118  ourselves.
   119  
   120  ### Windows Instructions
   121  
   122  Click the Windows link that matches your CPU architecture. Unzip using your
   123  preferred too then launch using your preferred console. Murex cannot be
   124  started via double clicking the executable -- it requires a starting from
   125  within an existing console session.
   126  
   127  Please also note that Windows support is also considered experimental. In part
   128  due to the lack of **coreutils** (as seen on Linux and UNIX) and in part due to
   129  the different underpinning technologies behind consoles / terminal emulators.
   130  If you do experience some wonky behavior then our recommendation is to run the
   131  `linux-amd64` build for Linux on top of WSL. The instructions above will guide
   132  you through installing on Linux, WSL install instructions can be found at the
   133  following site: [docs.microsoft.com/en-us/windows/wsl/install-win10](https://docs.microsoft.com/en-us/windows/wsl/install-win10)
   134  
   135  ## See Also
   136  
   137  * [Compatibility Commitment](/compatibility.md):
   138    Hack confidence in our backwards compatibility 
   139  * [Install](/INSTALL.md):
   140    Installation instructions
   141  * [Supported Platforms](docs//supported-platforms.md):
   142    Operating systems and CPU architectures supported by Murex
   143  
   144  <hr/>
   145  
   146  This document was generated from [gen/root/DOWNLOAD_doc.yaml](https://github.com/lmorg/murex/blob/master/gen/root/DOWNLOAD_doc.yaml).