Module 2 of 13 · Getting Started with AI Development · Beginner

Installing Git and Python

Duration: 5 min

Installing Git

Git is a version control system that tracks changes to your code. Download it from git-scm.com and follow the installation instructions for your operating system (Windows, macOS, or Linux).

# After installation, verify Git is installed by checking its version
git --version

Try it in Google Colab: Open in Colab

git version 2.34.1

Installing Python

Python is the programming language we'll use for AI development. Download Python 3.8 or later from python.org. During installation, make sure to check 'Add Python to PATH'.

# Verify Python is installed
python --version

# Or on some systems:
python3 --version
Python 3.9.7

❓ What should you check during Python installation?

← Previous Continue interactively → Next →

Related Courses