When I was first starting out my programming adventures with Python, someone told me that I should work with Python 3 instead of 2 because that’s what will be maintained in the future (this was some 8 years ago). I decided to listen and when I got home I opened up my terminal, wrote:
I somehow did some bash wizardry that reinstalled all the packages that were removed with python and was good to go. Nice to see someone else did the exact same thing though
When I was first starting out my programming adventures with Python, someone told me that I should work with Python 3 instead of 2 because that’s what will be maintained in the future (this was some 8 years ago). I decided to listen and when I got home I opened up my terminal, wrote:
sudo apt-get remove python
Followed by
sudo apt-get install python3
Only to be suddenly greeted with:
sudo: command not found
I remember I did the same mistakes few years ago. If I’m not mistaken, there is a big warning message when you try to remove Python, no?
Why does removing python remove half the OS though? Does it remove all the things that depend on it?
Haha I’ve done this.
I somehow did some bash wizardry that reinstalled all the packages that were removed with python and was good to go. Nice to see someone else did the exact same thing though