2

I am trying to create my own Cura GUI. I am constantly getting the error:

UM module not found.

Do I need to see a UI file?

I think I am wrong.

I've installed Python, pyqt5, numpy, scipy, but I do not understand why the constant UM module was not found.

I know I'm doing it wrong somewhere but I can not find my mistake.

I believe there are people who will help me. There are people who know how to do it. Will you help me? What am I supposed to do?

Greenonline
  • 6,748
  • 8
  • 40
  • 68
term
  • 21
  • 1

1 Answers1

1

UM could stand for UltiMaker. I think that you need to either:

  • download Uranium;
  • install the UM package;
  • import the UM package, or;
  • need to add it to your path (PYTHONPATH).

You may find your answer here: help needed: ImportError: "No Module named UM" in Eclipse #510.

The two things that you seem to need to do are:

  1. Get Uranium from https://github.com/Ultimaker/Uranium.

  2. Add the path: PYTHONPATH=/path/to/uranium/repo cura_app.py

Greenonline
  • 6,748
  • 8
  • 40
  • 68