×

Python System Requirements

Introduction

As we know, Python is a popular programming language usually used to write scripts for operating systems. It’s handy adequate for utilizing in web development and application design.

In this article, we will discuss the hardware and software requirements for Python. We can download Python from https://www.python.org/downloads. The latest Python version is Python 3.9.1.

Operating Systems:

Windows 7 or 10

Mac OS X 10.11 or higher, 64-bit

Linux: RHEL 6/7, 64-bit (almost all libraries also work in Ubuntu)

CPU Architecture:

Dual-core Intel Core i5 or similar

Graphics card

x86 64-bit CPU (Intel / AMD architecture)

RAM and free disk space:

4 GB RAM

5 GB free disk space

Installing Python on Windows

Prerequisites:

  • A system operating Windows
  • Command Prompt (comes with windows by default).

Steps for downloading Python:

1. We can download Python from the official Python website.
2. Select the latest version.
3. Select from Windows x86-64 executable installer or Windows x86 executable installer link.
4. Run the Python Installer after downloading the Python and Add the Python version to PATH checkboxes.
5. Select the install now option.

Installing Python on Mac OS

Prerequisites:

  • Apple's Integrated Development Environment (IDE)
  • Homebrew(Package manager in Mac OS).

Steps for installing Python with Brew:

1. Enter the brew command into the terminal 

--brew install python3.

2. Set up the PATH environment variable.
3. Add the following line to the ~/.profile file

export PATH=/usr/local/bin:/usr/local/sbin:$PATH.

4. Python installation directory looks like this you should add it to the PATH.

PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}".

Installing Python on Linux

For installing Python on Linux, You have to install the development packages in Linux for Python.

On Debian:

$ sudo apt update

$ sudo apt install build-essential zlib1g-dev \

libncurses5-dev libgdbm-dev libnss3-dev \

libssl-dev libreadline-dev libffi-dev curl

On Fedora:

$ sudo dnf groupinstall development

Steps for installing Python on Linux:

1. You can download the latest version of Python from the official Python website  2. Extract the tar.xz archive file. It contains the source code of Python. It can be      extracted with $ tar -xf Python-3.?.?.tar.xz.
3. Configuring the script with$ cd Python-3.*./configure.
4. verify the installation with typing python3 --version in the terminal.


Related Topics

Base Case in Recursive function python

In this article, we will learn about Python's base case in a recursive function. Before learning this, let’s first understand what recursion is in Python and the use of recursion in...

6 minutes read.

Flutter with tensor flow in python

Python : Python is an object oriented programming language which is highly interpreted and is highly interactive. Python was created by Guido van Rossum in the year 1985 – 1990 .The...

3 minutes read.

Python Project Ideas Based On Django

Introduction If you have learned Python and you are an expert in Django, then your practical skills should be excellent in this field. If you want to check your practical skills,...

9 minutes read.

Python bytearray()

Python bytearray() Class The bytearray() class is used to return a bytearray object which is an array of the specified bytes. It gives a mutable sequence of integers in the range 0...

1 minute read.

Python Deep Copy and Shallow Copy

Assignment statements in Python create bindings between a target and an object, not copies of them. The = operator only makes a new variable that shares the reference to the...

3 minutes read.

Python Program to find the length of a string

Python program to find the length of a string A string in Python is a set of Unicode characters. It can't be changed once it's been declared. The number of characters...

2 minutes read.

Latest Project Ideas using Python 2024

Python is one of the well-known languages for programming in the contemporary domain of computer science. The demand to adopt Python for IT purposes is steadily increasing because of its...

7 minutes read.

Python JSON

In this tutorial, we will learn about JSON in the Python programming language. We will focus on its features, Guidelines to be kept in mind while writing its syntax, the...

3 minutes read.

Uint8 Python

Python: Python programming language is one of the most used programming languages, as it is used widely in the field of software and data analysis, web development, etc. It is said...

3 minutes read.

Python Program to Print all the Prime Number in an Interval

Python Program to Print all the Prime Number in an Interval What is Prime numbers? A prime number is referred to those numbers that can be divisible by them only. In simple words,...

4 minutes read.

How to change the names of Columns in Python

Introduction To play with huge amounts of data, in Python we require a tool. The tool which is available in Python is Pandas. Pandas is an open-source library. It is used...

3 minutes read.

Reason for Python So Popular

One of the languages that is witnessing outstanding development and acceptance every year in Python. Python has emerged as the programming language with the greatest rate of growth, and Stack...

3 minutes read.

Text detection using Tkinter in Python

Tkinter: The standard Python technique for building Graphical User Interfaces (GUIs) is Tkinter, which is included in all popular Python distributions. The only framework included in the Python standard library is...

4 minutes read.

Working with files in Python

Python is an object-oriented high-level programming language. Python has dynamic semantics and has high-level built-in data structures which support dynamic typing and dynamic binding. Python provides rapid development. It has an...

5 minutes read.

Python vs Java

There are a lot of programming languages out there, and every day, a new programming language is developing in some parts of the world. Each programming language is a mixture...

5 minutes read.

Python Goto Statement

We all know that Python is the most basic and widely used programming language in the world. It is also one of the world's most popular and widely used languages....

4 minutes read.

How to Install Tweepy in Python

In this article, we will learn or understand how to install Tweepy in Python and what Tweepy is. Firstly, let’s understand What Tweepy is. As we all know, one of the...

3 minutes read.

Convert Float to Int in Python using Pandas

Introduction To play with huge amounts of data, in python we require a tool. The tool which is available in Python is pandas. A panda is an open-source library. It is...

4 minutes read.

How to Install Scikit-Learn

Sklearn or Scikit-learn is a python library used for machine learning. It contains many features like classification, regression, clustering, and Dimensionality reduction algorithms. Sklearn is used to build machine learning...

3 minutes read.

Python Tuple index() Method

Python Tuple index() Method The tuple.index() method of Python finds the first occurrence of the specified value and returns its index if the value is found else raises an exception if...

1 minute read.