electrumx/contrib/python3.6/python-3.6.sh
Daniel Shakhmundes b21987fb4c Hardcoded username directory replaced with ~ (#494)
This change will cd to the current user's directory, rather than /home/username
2018-06-14 23:09:31 +08:00

14 lines
318 B
Bash

#!/bin/sh
###########################
#Installation of Python 3.6
###########################
sudo add-apt-repository ppa:jonathonf/python-3.6
sudo apt-get update && sudo apt-get install python3.6 python3.6-dev
cd ~
git clone https://github.com/kyuupichan/electrumx.git
cd electrumx
sudo python3.6 setup.py install