Where did you download and extract the Electrum-3.2.2.tar.gz file?
I just cannot remember, it's all been very confused, over three weeks ago (posts 4 to 12 in this thread). Possibly, I downloaded it from the Mac interface, then moved it over to the Ubuntu desktop and unpacked it there. It got deleted afterwards.
The "cd" command (short for "change directory") will only look in the current directory if you don't pass it the full path... Depending on which directory you are in when you type "cd Electrum-3.2.2", then the system might not see that directory. It doesn't "search" your entire file system looking for it. So you need to know exactly where it is.
I tried to do some searches as best as I could with the terminal, this is what I got:
~$ locate electrum|grep bin
/usr/local/bin/electrum
~$ locate electrum 3.2.2|grep bin
/usr/local/bin/electrumThis is what I then found in that directory (sorry, I don't know how to upload a screenshot here). The dates stamps on all those files (July 13) except the last one (qr, = 2015) seem to indicate that they are those that were installed at the time, three weeks ago:
/usr/local/bin/easy_install
/usr/local/bin/easy_install-3.4
/usr/local/bin/electrum
/usr/local/bin/pip
/usr/local/bin/pip3
/usr/local/bin/pip3.4
/usr/local/bin/qrBut I do not know how to see the electrum file's version number. Anyhow, after this I tried these commands:
~$ cd /usr/local/bin/electrum
bash: cd: /usr/local/bin/electrum: Not a directory
~$ cd usr/local/bin/electrum
bash: cd: usr/local/bin/electrum: No such file or directory
~$ cd usr/local/bin/
bash: cd: usr/local/bin/: No such file or directory
~$ cd /usr/local/bin/
/usr/local/bin$ python3.5 electrum
Error: No module named 'dns'. Try 'sudo pip install '
/usr/local/bin$... from which I don't know where to go. As you see it's not really getting me very far...