.. _instalation: ============ Installation ============ You can found the Galaxie microGUI Repository here: https://codeberg.org/RTNP/galaxie-microgui Installation via pip -------------------- .. code:: bash pip install galaxie-microgui Installation via pip (test) --------------------------- .. code:: bash pip install -i https://test.pypi.org/simple/ galaxie-microgui Next Step --------- Now you can the start the **glxmg-demo** entry point .. code:: bash $> glxmg-demo or use the python package .. code-block:: python #!/usr/bin/env python import os import sys import argparse import glxmg def main(argv=None): try: widget = glxmg.Widget() return 0 except Exception: return 1 if __name__ == "__main__": sys.exit(main())