(1)I get stuck on
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
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])))