Installation

Attention! Only development builds for Linux, MacOS, and Windows are available at the moment.

Installation on Linux

Stable: From DEB Repository (Ubuntu/Debian)

Installing on Ubuntu:

curl -sL https://pkg.qeda.org/setup | sudo -E bash -

Installing on Debian (as root):

curl -sL https://pkg.qeda.org/setup | bash -

Check whether you can run QEDA from the command string:

qeda --version

Development: From Package

  1. Download the package with the executable binary:

    wget https://builds.qeda.org/dev/qeda-linux-x86_64-dev.tar.xz
    
  2. Unpack the package and copy the qeda executable to /usr/bin directory:

    tar -xf qeda-linux-x86_64-dev.tar.xz
    cd qeda-linux-x86_64-dev
    sudo cp -fv qeda /usr/bin
    
  3. Check whether you can run QEDA from the command string:

    qeda --version
    

Installation on MacOS

Stable: Using Homebrew

Coming soon.

Development: From Package

  1. Install prerequisites if needed:

    brew install wget
    
  2. Download the package with the executable binary:

    wget https://builds.qeda.org/dev/qeda-mac-x86_64-dev.tar.xz
    
  3. Unpack the package and copy the qeda executable to /usr/bin directory:

    tar -xf qeda-mac-x86_64-dev.tar.xz
    cd qeda-mac-x86_64-dev
    sudo cp -fv qeda /usr/bin
    
  4. Check whether you can run QEDA from the command string:

    qeda --version
    

Installation on Windows

Stable: Using winget

  1. Download and install winget if needed:

    https://github.com/microsoft/winget-cli/releases

  2. Coming soon.

Development: From Package

  1. Download the package with the executable binary:

    https://builds.qeda.org/dev/qeda-windows-x86_64-dev.7z

  2. Use 7-Zip archive manager or similar to unpack qeda.exe executable from the package.

  3. Copy the executable to C:\Windows directory or any directory that is specified in the PATH environment variable.

  4. Check whether you can run QEDA from the command string:

    qeda.exe --version