Sorry for the delay. Access to a Windows machine can more complicated than access to Linux
Here’s a report:
I’ve downloaded
Python 3.4.3 for Windows from https://www.python.org/downloads/release/python-343/ (don’t try this at home; you can read later in this post why ) and
the SeededNuAuction code from https://github.com/Nagalim/SeededNuAuction/archive/master.zip
I adjusted participant_windows.py: replaced, line 8
"C:\Users\**INSERTUSERNAMEHERE**\AppData\Roaming\Nu\nucoin.conf" with
"C:\Users\myUserNameHere\AppData\Roaming\Nu\nu.conf"
because my Nu configuration file is named nu.conf instead of nucoin.conf.
[…]which should save users from entering their username as %appdata% is a variable for the current user’s appdata location - should work on most Windows versions; Using the %appdata% variable hat didn’t work. When using
%appdata%\Roaming\Nu\nu.conf
in participant_windows.py: line 8 the program didn’t run.
Looks like each user has to adjust that path individually.
Trying to run auctioneer.py created an error message:
SyntaxError: Missing parentheses in call to 'print'
Resolved that by uninstalling Python 3.4.3 and installing Python 2.7.10 from https://www.python.org/downloads/release/python-2710/
After installing Python 2.7.10 auctioneer.py created a new error message:
[...]auctioneer.py", line 14, in <module>
opts = dict(tuple(line.strip().replace(' ','').split('=')) for line in open(NUCONFIG).readlines())
IOError: [Errno 2] No such file or directory: 'None/.nu/nu.conf'
I adjusted line 13 of auctioneer.py from
NUCONFIG='%s/.nu/nu.conf'%os.getenv("HOME") to
NUCONFIG=r'C:\Users\myUserNameHere\AppData\Roaming\Nu\nu.conf'
After that running auctioneer.py resulted in this output:
Enter Block Height of Auction Close:
Running participant_windows.py produced
Successfully loaded Nu RPC and found block count as: 218866
Yeah, the blockchain is still syncing
I hope that helps.