openxenmanager icon indicating copy to clipboard operation
openxenmanager copied to clipboard

Print Error in OS X EL Captian with Python 3

Open rkaartikeyan opened this issue 9 years ago • 2 comments

Python 2.5 not supported in OS X EL Captian. so i installed Python 3, and i got following Error.

python window.py File "window.py", line 441 print column, cell, model, iter_ref, user_data SyntaxError: Missing parentheses in call to "print"

Please help me to resolve this issue.

rkaartikeyan avatar Feb 25 '16 15:02 rkaartikeyan

OpenXenManager doesn't support Python3 (needs a lot of work before it will!)

Looking here http://docs.python-guide.org/en/latest/starting/install/osx/, El Capitan comes with Python 2.7 which OXM supports, so should work just fine

TwoWheelDev avatar Feb 25 '16 15:02 TwoWheelDev

Hi @rkaartikeyan here a little tip for you.

In MacOSX you can use a dependency manager called homebre (https://brew.sh). After installing it, or if you already have it, simple do this following command to install Py2.7:

brew install pyenv
pyenv install 2.7.5
pyenv global 2.7.5

Or simple:

brew install python

Good luck!

ovflowd avatar Jun 20 '16 17:06 ovflowd