I'm using freshly installed Ubuntu 15.04 in that I want to install the newer version of Python. So, in terminal I typed this.
sudo apt-get install python 3.5.0
And it downloaded and installed something. After that when I entered python3
on terminal it opened the version 3.4.3 and not 3.5.0.
Though it didn't installed the version that I wanted I entered this
sudo apt-get remove python 3.5.0
When it's done I found out that Ubuntu Software Center was disappeared and when I restarted the OS, Ubuntu's launcher and menu bar was disappeared but the files on the desktop are visible and openable. But ctrl + alt + t is not opening terminal.
So, what went wrong here?
sudo apt-get install python3=3.5.0
, because the package name ispython3
and you have to select a version by using the syntaxpackage=version
, without any space in between. But in the official repository is onlypython3
in version3.4.3-1
available anyway (you can check withapt-cache policy python3
). That means you would have to add a PPA providing the newer version first anyway. – Byte Commander Sep 19 '15 at 15:49apt-get install
didn't throw any error but downloaded and installed something for about 85 MB. I just tried to remove what I installed( remove command makes sense to me). – Balakrishnan Sep 19 '15 at 15:56remove
command? If yes, copy it and save it! This might be your chance to restore the other packages! – Byte Commander Sep 19 '15 at 16:02