openxenmanager icon indicating copy to clipboard operation
openxenmanager copied to clipboard

Got error when running openxenmanager on macOS high sierra

Open evelynloo opened this issue 7 years ago • 1 comments

When running this command ./openxenmanager, I got this error. Traceback (most recent call last): File "./openxenmanager", line 32, in from OXM.window import oxcWindow File "./src/OXM/window.py", line 25, in from configobj import ConfigObj ImportError: No module named configobj

I have already executed these command successfully,

  1. brew install python gtk pygtk
  2. pip install configobj

But still not able to launch the openxenmanager, can anyone help me out, please?

evelynloo avatar Oct 31 '17 09:10 evelynloo

Hey @evelynloo, I don't know if this helps, but is it possible your python and pip commands pointing to the system python instead of homebrew python?

I made a mistake earlier where my configobj was on the wrong path, when I reinstalled python through homebrew it was installed as python2 and pip2 so I instead used:

pip2 install configobj python2 setup.py build python2 setup.py install

and it worked nicely-ish for me (am on high-sierra).

JessicaCGlenn avatar Dec 21 '17 00:12 JessicaCGlenn