Skip to content

Installation

Follow these steps to install Yoto Up:

Binary installation

Pre built binaries (Linux/Windows/MacOs) are provided for the flet based gui, these can be found under the "releases" section on github.

Installing from git

  1. Clone the repository:

    git clone https://github.com/your-org/yoto-up.git
    cd yoto-up
    
  2. Create (and activate) virtual environment

    uv venv
    source .venv/bin/activate
    

  3. Install dependencies:

    uv pip install -r requirements.txt
    

  4. (Optional) Install GUI dependencies: If you plan to use the GUI, install additional dependencies:

    uv pip install -r yoto_app/requirements.txt
    

  5. Start the application: To start Yoto Up, you can use either CLI mode or GUI mode:

    • CLI mode:

      python yoto.py --help
      

    • GUI mode:

      python gui.py
      

Next Steps