• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

Help setting up p2pool

CryptoKnut

New member
Hello all I've been trying relentlessly the last few days to set up my own p2pool locally. I've followed the directions in the README and still can't seem to get it working. I downloaded the latest repository and python modules at github listed below
https://github.com/vertoe/p2pool-dr
https://github.com/vertoe/darkcoin_hash
https://github.com/vertoe/darkcoin_subsidy

I downloaded and installed Python 2.7. Twisted 13.0.0 and Zope.interface 3.8.0. then I build the darkcoin_hash and darkcoin_subsidy then tried to run python_p2pool.py and i keep getting an error. I'll list the error i get in cmd below.


C:\Users\Leon>cd documents

C:\Users\Leon\Documents>cd github

C:\Users\Leon\Documents\GitHub>cd p2pool-drk

C:\Users\Leon\Documents\GitHub\p2pool-drk>run_p2pool.py
Traceback (most recent call last):
File "C:\Users\Leon\Documents\GitHub\p2pool-drk\run_p2pool.py", line 3, in <mo
dule>
from p2pool import main
File "C:\Users\Leon\Documents\GitHub\p2pool-drk\p2pool\main.py", line 23, in <
module>
from darkcoin import stratum, worker_interface, helper
File "C:\Users\Leon\Documents\GitHub\p2pool-drk\p2pool\darkcoin\stratum.py", l
ine 8, in <module>
from p2pool.util import expiring_dict, jsonrpc, pack
File "C:\Users\Leon\Documents\GitHub\p2pool-drk\p2pool\util\jsonrpc.py", line
9, in <module>
from twisted.web import client, error
File "C:\Python27\lib\site-packages\twisted\web\client.py", line 32, in <modul
e>
from twisted.internet.endpoints import TCP4ClientEndpoint, SSL4ClientEndpoin
t
File "C:\Python27\lib\site-packages\twisted\internet\endpoints.py", line 33, i
n <module>
from twisted.internet import stdio
File "C:\Python27\lib\site-packages\twisted\internet\stdio.py", line 28, in <m
odule>
from twisted.internet import _win32stdio
File "C:\Python27\lib\site-packages\twisted\internet\_win32stdio.py", line 7,
in <module>
import win32api
ImportError: No module named win32api
 
Back
Top