Skip to content

Running the GUI from source

Leata Byers edited this page Oct 18, 2023 · 14 revisions

!!!DRAFT!!!

Prerequisites

Windows

  1. Install Python3 by following these instructions: https://www.python.org/downloads/windows/
  2. Install Git-bash for Windows: https://git-scm.com/download/win
  3. Open a git-bash command prompt
  4. In the command line run the following commands:
  • pip3 install pyside6
  • pip3 install pyyaml

Linux

  1. Open a command prompt
  2. Install python3:
  • sudo apt install python3
  1. pip3 install pyside6
  2. pip3 install pyyaml

Running the GUI

Windows

  • Open a gitbash command prompt as admin
  • $ cd [path/to/cloudfuse]/gui
  • compile GUI
    • $ ./compile_ui.sh
  • $ cd ..
  • $ python gui/FuseGUI.py

Linux

  • Open a command prompt
  • $ cd [path/to/cloudfuse]/gui
  • compile GUI
    • $ ./compile_ui.sh
  • $ cd ..
  • $ python gui/FuseGUI.py
Clone this wiki locally