Skip to content

Running the GUI from source

Leata Byers edited this page Jul 30, 2024 · 13 revisions

Prerequisites

Windows

  1. Install Python3.11 from here : https://www.python.org/downloads/windows/
    • Make sure to add Python to your PATH
  2. Install Git-bash for Windows: https://git-scm.com/download/win
  3. Open a git-bash command prompt
  4. Install dependencies:
    • pip install -r [path/to/cloudfuse]/gui/requirements.txt

Linux

  1. Open a command prompt
  2. Install python3:
    • sudo apt install python3
  3. pip3 install -r [path/to/cloudfuse]/gui/requirements.txt
  4. Install a PySide6 dependancy:
    • sudo apt-get install libxcb-cursor0 -y

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