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 --versiongit version 2.34.1Installing 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 --versionPython 3.9.7❓ What should you check during Python installation?