I have a VM with Ubuntu 16.04.6 LTS. It has by default Python 3.5.2
And, I have installed Python 3.8 following the following procedure:
wget https://www.python.org/ftp/python/3.8.0/Python-3.8.0.tgz
tar xzf Python-3.8.0
cd Python-3.8.0
sudo ./configure --enable-optimizations
sudo make altinstall
As I will install miniconda and I want to avoid any conflicts, I would like to know how to uninstall it.
So far I have tried:
sudo apt-get purge python3.8 AND
sudo apt-get --purge remove python3.8
And finally I have just deleted the folder which contained it, by mistake :(
But I still have it. Check the image.
Is it possible to uninstall it? Will I have any problems in the future?
Thank you

