Okay, so here are some simple steps to run electrum:
1) Open up terminal on ubuntu --> create a directory in a particular location where you want electrum to be extracted to (use the
command to do this. Remove the open and closed brackets and replace with your folder name)
2) Install Python 3 and it's dependencies (it's needed for electrum 3.0, since it now uses python3): type in
sudo apt-get install python3-setuptools python3-pyqt5 python3-pip
and wait for the installation to finish.
3) Change directory to the directory you've created above (write down:
. Remove the brackets and replace with your folder name)
4) Now do:
wget https://download.electrum.org/3.0.1/Electrum-3.0.1.tar.gz
in that folder. This will download electrum 3.0.1.
5) After download is done, untar it by doing:
tar -xvzf Electrum-3.0.1.tar.gz
. Now you'll notice a new electrum folder in your directory that you've created and cd'd to.
6) Change directory to this newly created folder by doing:
7) run:
sudo python3 setup.py install
if you want to install electrum 3.0.1 or just run
to run it without installing.
Hope this helps. Do let me know if you have any further questions.