Mastering Python: A Comprehensive Guide to Installation

Mastering Python: A Comprehensive Guide to Installation

In this article, we'll guide you through the seamless installation of the Python interpreter on your local computer, whether you're using Windows, macOS, or Linux.

Installing on Windows

  1. Download Python:

    • Download the latest Python 3 release for Windows on https://www.python.org/ downloads/windows/ and execute the installer. At the time of writing, this is Python 3.6.0.
  2. Setup Path:

    • Make sure that the “Install launcher for all users” and “Add Python to PATH” settings are selected and choose “Customize installation”.

Figure 2.1: Windows installation

  1. Customize Installation:

    • Ensure "Install launcher for all users" and "Add Python to PATH" are selected.

    • Opt for "Customize installation" for more control.

  2. Optional Features:

    • In "Optional Features," consider installing everything.

    • Essential: Install "pip" (Python package manager) and "pylauncher (for all users).

  1. Advanced Options:

    • Select "Add Python to environment variables."

    • Suggestion: Change the install location to something like C:\Python36\ for easy accessibility.

    • Allow Python to use more than 260 characters on the file system by choosing "Disable path length limit."

Figure 2.3: Windows installation

  1. Verification:

    • Open the command line (cmd) and execute "python" or "python3."

    • If installed correctly, the Python REPL (Read, Evaluate, Print, and Loop) will appear.

Figure 2.4: Python REPL

Installing on macOS

  1. Download Python:

    • You can download the latest macOS binary releases from https://www.python.org/ downloads/mac-osx/.

    • Make sure you download the latest Python 3 release (3.6.4 at the time of writing).

    • Alternatively, use Homebrew (brew install python3) or MacPorts (port install python36).

Figure 2.5: Python REPL

Check python versions installed on Mac

  1. Verification:

    • Open the terminal, execute python3, and the Python REPL will be accessible.

    • Type Ctrl+D or exit() to leave the REPL.

Installing on Linux

  1. Download Python:

    • To install Python on Linux, you can download the latest Python 3 source releases from https://www.python.org/downloads/source/ or use your package manager (apt-get, aptitude, synaptic, and others) to install it.

    • To make sure you have Python 3 installed on your system, run python3 --version in your terminal.

Figure 2.6: Python REPL

  1. Verification:

    • Run python3 --version in your terminal to confirm Python 3 installation.

    • Open the terminal, execute python3, and the Python REPL will be ready.

    • Type Ctrl+D or exit() to exit the REPL.

Congratulations! You've successfully installed Python on your system. In the upcoming articles, we'll explore the fundamentals of Python programming.

Did you find this article valuable?

Support Latest Byte by becoming a sponsor. Any amount is appreciated!