1

I downloaded the setup from official site and executed ./setup.py but got following error

File "./setup.py", line 54
    print "Error when creating opscenter SSL files. Error was:\n"
                                                                ^
SyntaxError: Missing parentheses in call to 'print'

any alternatives?

Amarjit Dhillon
  • 2,718
  • 3
  • 23
  • 62
  • What version of Python are you running. Sounds like you're on 3.x and the setup.py file was written on 2.6. In 3.0 and better you need to call the print function as in print(). Open the file and add the parens wherever you see print and run it again – apesa Dec 26 '17 at 18:52

0 Answers0