OpenXenManager / openxenmanager

Opensource XenServer Management Interface

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Print Error in OS X EL Captian with Python 3

rkaartikeyan opened this issue · 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.

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

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!