Tuesday, June 8, 2021

Real Python: Python Basics: Setting Up Python

Setting up Python is the first step to becoming a Python programmer. In this course, you’ll learn how to download and install Python for Windows, macOS, and Ubuntu Linux and how to open Python’s Integrated Development and Learning Environment, IDLE.

There are many ways to install Python. You can download official Python distributions from Python.org, install from a package manager, and even install specialized distributions for scientific computing, Internet of Things, and embedded systems. This course focuses on official distributions, as they’re generally the best option for getting started with learning to program in Python.

This course can be enjoyed alone or as an accompaniment to Python Basics: A Practical Introduction to Python 3.

In this course, you’ll learn how to:

  • Install Python on Windows, macOS, and Linux
  • Open IDLE, Python’s integrated development and learning environment

[ Improve Your Python With 🐍 Python Tricks 💌 – Get a short & sweet Python Trick delivered to your inbox every couple of days. >> Click here to learn more and see examples ]



from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...