Member-only story

How to Get Started with Python Development on Ubuntu

Dr. Tânia Frazão, M.C.S., D.V.M.
The ABCs of GenAI
Published in
5 min readOct 31, 2023
Photo by Alex Kulikov on Unsplash

Python is the lingua franca of artificial intelligence

Whether you’re building neural networks, implementing machine learning algorithms, or leveraging powerful AI libraries — Python is likely going to be your programming language of choice.

The language empowers developers to quickly prototype and build AI applications without getting mired in complex coding paradigms. From automating mundane tasks to building self-driving cars, Python is driving innovation in the AI space.

So if you want to level up your AI skills, it’s time to get friendly with Python.

The good news is that it’s easy to install Python and get up and running on Ubuntu.

In this beginner-friendly guide, I’ll walk you through how to install Python on the latest Ubuntu 22.04 or 20.04 LTS releases. First things first, let’s check if Python is already installed on your system…

Python running on Ubuntu. Gif made by the author.

Step 1: Checking for Python

Before installing Python, it’s a good idea to check if it’s already installed on your system. Open the terminal on your Ubuntu system and type:

python3 --version

This will show you the version of Python 3 installed on your system. If you see an output like “Python 3.x.x”, you can skip to Step 3. If not, proceed to Step 2.

Step 2: Installing Python

To install Python on Ubuntu, open the terminal and type the following command:

sudo apt-get update

This will update the package list on your system. Then, type the following command to install…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

The ABCs of GenAI
The ABCs of GenAI

Published in The ABCs of GenAI

Discover the exciting world of AI through The ABCs of AI! A fun and accessible guide to generative AI, featuring simple explanations and illustrations. Perfect for anyone interested in learning about it, from non-experts to experts.

Dr. Tânia Frazão, M.C.S., D.V.M.
Dr. Tânia Frazão, M.C.S., D.V.M.

Written by Dr. Tânia Frazão, M.C.S., D.V.M.

Computer scientist &Vet.(DVM) passionate about animals, the potential of generative AI and Python. Shares insights on pet health and tech.

Write a response