> For the complete documentation index, see [llms.txt](https://arditxhaferi2.gitbook.io/python-web-scrapper/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://arditxhaferi2.gitbook.io/python-web-scrapper/getting-started/installing-python.md).

# Installing Python

Python is an interpreted, high-level and general-purpose programming language. Python's design philosophy emphasizes code readability with its notable use of significant whitespace.

## Install Python

The installer for python can be found [here](https://www.python.org/downloads/). As a good documentation should be we will continue only using one OS and the obvious choice is Windows, besides who even uses something else :)

![Python Installer](https://972083382-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-MRbLlBtTk73n18Xk6_w%2F-MRbLnWKsTzJUm1wt7NC%2F-MRbPXeEo7OnFdvkPR-3%2FCapture.PNG?alt=media\&token=88115ba9-8215-4230-8d69-82edb2b07952)

{% hint style="info" %}
Please don't forget to check the checkbox for adding Python to your PATH its crucial.
{% endhint %}

## Verify Python Installation

To determine whether you have Python installed:

* Open the Command Prompt window or any terminal.
* When the console window opens, type in:

```
$ python
```

{% hint style="success" %}
If the command is recognized, Python responds with its version and a list of commands.
{% endhint %}

{% hint style="danger" %}
If this command is not unrecognized, you need to reinstall Python or troubleshoot.
{% endhint %}
