Skip to content

Latest commit

 

History

History
53 lines (27 loc) · 2.31 KB

installation_guide.md

File metadata and controls

53 lines (27 loc) · 2.31 KB

Resources - Installing Python

During class we'll frequently use the command line and a text editor, and it helps if you have these installed beforehand. But if you're having trouble or don't have time, please come anyway!

Installing Python

Basic, Easy Installation with Anaconda

Anaconda is an easy to install software pacakge for Windows, Mac and Linux. It comes with many of the frequent tools and modules that many novice python developers use.

Download it here: https://www.anaconda.com/download/

Advanced Installation

Command Line

When learning Python you'll probably come across many references to the Command Line. What is it? How do you use it?

The answers to many of these questions can be found here. On Mac or Linux you're already set with Terminal or bash. Many versions of Windows come with Powershell, but you can also download it here.

Windows

Windows requires you to install Python, which can be confusing if you're new to programming. Below are a few guides to help you through the process:

Mac

Python comes pre-installed with OSX. All you need to do is open the Terminal application (found in Utilities or use Spotlight search) and type the following:

'''~$ python'''

this will start a Python instance, and everything else you type in the terminal window will be treated as Python.

Linux

This depends on the Linux distribution you're using, but it will most likely be installed.

Text Editors

There are quite a few to choose from, but some of the most popular include-

  • SublimeText(Mac, Windows, Linux)

  • Atom(Mac, Windows, Linux)

  • If you're using Windows, Notepad++ is a great option.

  • Experienced programmers might enjoy Emacs or Vim