Python

Python Menu

Download Python

Most Linux distributions already have Python already pre-installed. Some Macs and PCs also have pre-installed Python.

In case when there is no Python installed in your computer or just wants to upgrade your Python version, you can go to the official Python download page at:

https://www.python.org/downloads/

Python Installation

Python installation packages can be downloaded from the official website. To install Python, download the version suitable for your platform. After downloading, open the downloaded file and follow the on-screen instructions.

Anaconda Python

Additionally, Python can be installed using Anaconda.

To install anaconda go to https://www.anaconda.com/distribution/.

Anaconda installers

Choose a version suitable for you and click on download. Once you complete the download, open the setup.

Anaconda welcome

Follow the setup instructions. Don't forget to click Add anaconda to my variable path environment. You will get a window, as seen in the image below, after the installation is complete.

Anaconda finish

After finishing the installation, open anaconda prompt and type jupyter notebook.

CMD 01

Install Python Libraries In Anaconda

Open Anaconda prompt and check if the library is already installed or not. import numpy

CMD 02

Since there is no module named numpy present, run the following command to install. install numpy

CMD 03

A window will be shown in the image below, once the installation is complete.

CMD 04

Introduction

Python Basics

Python Advance

Data Science Python Tutorials

Python Functions and Methods