The other day, I was working with a client on Comprehensive Database Performance Health Check, during the check, one of the Dev there asked me if I know a way to install Python3 on Linux. As you know my major focus is always on SQL Server, however, I know a little bit about other technology as well. It is very straightforward to install Python3 on Linux.
Here is the command you can run to install Python.
sudo apt-get install python3-pip
Just as the install is easy, uninstall is equally easy as well. Here is the command to uninstall Python from Linux.
sudo apt-get remove python3-pip
Well, that’s it for today. Let me know if you work with Python and Linux in your daily routine or not.
Let me know if you are interested to know more about this topic and I will write more blogs as well as create an SQL in Sixty Seconds video.
Here are my few recent videos and I would like to know what is your feedback about them.
- Find Expensive Queries – SQL in Sixty Seconds #159
- Case-Sensitive Search – SQL in Sixty Seconds #158
- Wait Stats for Performance – SQL in Sixty Seconds #157
- Multiple Backup Copies Stripped – SQL in Sixty Seconds #156
Reference:Â Pinal Dave (http://blog.SQLAuthority.com)