I am having trouble getting the python script to run in ubuntu 13.04. I keep getting permission denied errors or it simply freezes on generating keys. Any ideas? Is there a html or windows version?
Hey Pistachio,
The freezes are usually because the ecda libs aren't installed for python. I'm not sure on that version of ubuntu but you can try the following:
First try the following:
sudo apt-get install python-ecdsa
If that does not work then it must not be in the repositories in that version of ubuntu so try the following:
sudo apt-get install python-pip
sudo pip install ecdsa
If that doesn't work then try the following:
sudo apt-get install python-setuptools
sudo easy_install pip
sudo pip install ecdsa
Once you get that installed then just go into the serpcoin directory and type ./run.sh
If that does not work for you send me a message with the errors you are getting and we'll try to work it out.