Post
Topic
Board Mining (Altcoins)
Re: [ANN] Stratum for Ethereum. Increase earning up to 20% compared to getwork.
by
glumobo
on 31/08/2016, 03:44:28 UTC
(1)I get stuck on
Code:
2) start proxy with
 python ./eth-proxy.py

Using Ubuntu, I receiving: python: can't open file '.eth-proxy.py': [Errno 2] No such file or directory
I see the file in '/home/user/ethproxy/eth-proxy.py'

When using
Code:
python '/home/user/ethproxy/eth-proxy.py'
I receive ERROR proxy # Wrong Wallet! in the command terminal and nothing else happens?
........

Python use the current directory as the working directory, so if you run it from another directory you should change it, since the modules are located in the ethproxy directory, adding something like this should allow you to run from any directory

os.chdir(os.path.dirname(os.path.abspath(sys.argv[0])))