Programming with Python : Installing Python on your Desktop | IT NETWORKS
Installing Python on your Desktop First of all, we need to install Python, In order to do that, we should go to PYTHON's official website and download it from there. Here is a link to download Python https://www.python.org/downloads/ Python is available for Linux, Windows, and macOS, choose the installation file based on the type of OS you're using. On windows 10, The installation is very simple you'll need to download the executable and then simply launch it. Do not forget to select "ADD PYTHON (Python version) to PATH" at the beginning of the installation process. After the installation is complete and in order to test Python you can open a simple Command Line Prompt than just type "Python" If it displays this kind of message : Then everything is fine. Try this message : >>>print("Hello world") and it will print out Hello World message This is