{ "cells": [ { "cell_type": "raw", "metadata": { "raw_mimetype": "text/restructuredtext" }, "source": [ ".. meta::\n", " :description: Topic: Installing Python with Anaconda, Difficulty: Easy, Category: Tutorial\n", " :keywords: python, anaconda, instructions, environments, beginner, data science, introduction" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Installing Python\n", "\n", "Without further ado, we now provide instructions for installing Python and other useful Python libraries on your machine via the Anaconda platform. Installing the Anaconda platform will install the following:\n", "\n", " - Python; specifically the CPython interpreter that we discussed in the previous section.\n", " - A number of useful Python packages, like matplotlib, NumPy, and SciPy.\n", " - Jupyter, which provides an interactive \"notebook\" environment for prototyping code.\n", " - conda: a package manager that will allow you to install and update Python and additional Python packages, while handling all compatibility issues for you.\n", " \n", "Note that installing Python via Anaconda will **not** break any other installations of Python that already exist on your computer. See [What did this just do to my computer?](#What-did-this-just-do-to-my-computer?) for more details.\n", "\n", "Some of the packages provided by Anaconda, like NumPy, have been [optimized](https://docs.anaconda.com/mkl-optimizations/) and will run significantly faster than if you installed them manually.\n", "\n", "