Python Web Scrapper
  • About
  • 📌Getting started
    • Installing Python
    • Installing PIP
  • 🔨Tools
    • Request
    • Beautiful Soup
    • Selenium
  • 📚Project
    • News Scrapper
Powered by GitBook
On this page
  • Install Python
  • Verify Python Installation

Was this helpful?

  1. 📌Getting started

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.

PreviousAboutNextInstalling PIP

Last updated 4 years ago

Was this helpful?

Install Python

The installer for python can be found . 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 :)

Please don't forget to check the checkbox for adding Python to your PATH its crucial.

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

If the command is recognized, Python responds with its version and a list of commands.

If this command is not unrecognized, you need to reinstall Python or troubleshoot.

here
Python Installer