29 November 2025
id 5045868677where i can get hand on project parctise
Try CodingEntrepreneurs on YouTube, or Programming with Mosh (but it's paid). You can also use GitHub to refer to uploaded projects/code.
id 8446013905text not yet in the index
Most Linux distros alredy come with python pre-installed
It is used heavily in Linux distroes
No need to install it (unless you want some other version)
Then take a look at pyenv or uv (from Astral)
These help a lot with managing diffrent python versions
id 8446013905text not yet in the index
It's already installed on most Linux distros. But the command might be python3 (because previously command python was reserved for python 2)
id 619230977It's already installed on most Linux distros. But the command might be python3 (because previously command python was reserved for python 2)
Or you can install python-is-python3 package
hamidOr you can install python-is-python3 package
Easier way is to run this command (no extra package installation, less bloat):
sudo ln -s $(which python3) /usr/bin/python
George 392.85 °CEven if you can, doesn't mean you should.
This was one way, there are many other ways too. Install miniconda uv or compile python and put in path.
And honestly I don't see how a simple sym link can't cause any damage
id 619230977This was one way, there are many other ways too. Install miniconda uv or compile python and put in path.
And honestly I don't see how a simple sym link can't cause any damage
typing commands can lead to damaging your system if you mistype
George 392.85 °CIt's easier to mess up a command than to just apt remove
I used pacman to install it so for me it's pacman -R
George 392.85 °CAlso, you don't always have permissions to do that.
In that case you link to $HOME/.local/bin
And add it to path in bashrc (or zshrc)
id 619230977In that case you link to $HOME/.local/bin
And add it to path in bashrc (or zshrc)
It's literally a 2.7kb package