Bitcoin Forum

Alternate cryptocurrencies => Altcoin Discussion => Topic started by: barwizi on November 28, 2013, 12:37:22 PM



Title: poclbm problems on Windows
Post by: barwizi on November 28, 2013, 12:37:22 PM
I've been trying for a week with nothing to show for it, it keeps going

poclbm.py -d0 -r 3 -f 2 http://barwizi.1:x@skc.coinmine.pl:6400

  File "C:\Users\Barwizi\Downloads\skein\skein\skein\poclbm-ske\poclbm.py", line
 92
    print '\nAt least one server is required\n'
                                              ^
SyntaxError: invalid syntax

Help me out


Title: Re: poclbm problems on Windows
Post by: snoopdoug on November 29, 2013, 03:50:17 AM
I've been trying for a week with nothing to show for it, it keeps going

poclbm.py -d0 -r 3 -f 2 http://barwizi.1:x@skc.coinmine.pl:6400

  File "C:\Users\Barwizi\Downloads\skein\skein\skein\poclbm-ske\poclbm.py", line
 92
    print '\nAt least one server is required\n'
                                              ^
SyntaxError: invalid syntax

Help me out

You're probably using Python 3 (like I was).

In Python 2, print is a statement. In Python 3, print is a function, and parentheses are required.

You have at least 2 options:  Change to Python 2, or upgrade your application to Python 3 (check out the 2to3 utility)

Good luck!