I am trying to install Python-3.5.5 for local user without sudo on Linux. I downloaded the Python-3.5.5.tgz with wget https://www.python.org/ftp/python/3.5.5/Python-3.5.5.tgz
, then used tar zxvf Python-3.5.5.tgz
to unzip the file. But this line takes forever to unzip this 19M file. I waited for several hours but it didn't seem to finish. On the terminal, things like this
Python-3.5.5/
Python-3.5.5/Lib/
Python-3.5.5/Lib/poplib.py
Python-3.5.5/Lib/nntplib.py
are poping out every one or two seconds. But it seems that there are just too many of these files. Is there anything that can speed up this process? Or are there any alternatives for the command tar zxvf to unzip a .tgz file?