---
title: "How to install python on system?"  
description: "How to install python on system?"  
author: "Amrita Bhattacharjee"  
published: 2023-03-28  
updated: 2023-06-19  
canonical: https://www.mindstick.com/forum/157615/how-to-install-python-on-system  
category: "python"  
tags: ["python"]  
reading_time: 2 minutes  

---

# How to install python on system?

Provide step by step answer of how to [install](https://www.mindstick.com/articles/12876/the-top-5-reasons-to-buy-and-install-a-tonneau-cover) [python](https://www.mindstick.com/articles/75378/simple-yet-useful-tips-when-using-python) on system.

## Replies

### Reply by Aryan Kumar

There are a few ways to install Python on your system. Here are the most common methods:

- **Download the official Python installer from the Python website.** This is the easiest way to install Python. Simply go to the Python website: https://www.python.org/downloads/ and click on the "Download Python" button. You will be prompted to choose the version of Python you want to install.
- **Use the Windows Package Manager (WinGet).** This is a new way to install software on Windows. To use WinGet, open a command prompt and type the following command:

Code snippet

```plaintext
winget install python
```

- **Use the macOS App Store.** If you are using macOS, you can install Python from the App Store. Simply open the App Store and search for "Python". The Python app will be listed in the results.
- **Use the Linux package manager.** Most Linux distributions have a package manager that you can use to install Python. For example, on Ubuntu, you can install Python by typing the following command into a terminal:

Code snippet

```plaintext
sudo apt install python3
```

Once you have installed Python, you can verify the installation by typing the following command into a command prompt or terminal:

Code snippet

```plaintext
python --version
```

This will print the version of Python that is installed on your system.

Here are some additional resources that you may find helpful:

- Official Python documentation: https://docs.python.org/3/
- Python Tutorial: https://docs.python.org/3/tutorial/
- Python for Beginners: https://www.learnpython.org/


---

Original Source: https://www.mindstick.com/forum/157615/how-to-install-python-on-system

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
