Python Tools MOOCS
Python Tools MOOCS
Configuring Python
& Tools
Brandon Krakowsky
Download/Installing Python
• We will be using Python 3 in this course
- There are some differences between Python 3 and Python 2
- If you already have Python 2 installed, please upgrade to Python 3
• To download and install Python, go here: https://www.python.org/downloads/ (Download the
latest version)
• This download/install comes bundled with IDLE (Python’s Integrated Development and Learning
Environment)
- Includes an interactive Python interpreter and script editor
1
06-10-2020
Jupyter Notebook
• Jupyter Notebook App: Runs in a browser on your computer
- Includes interactive Python interpreter and script editor
- To install, download Anaconda, a data science platform. This will install Python and Jupyter
Notebook all at once: https://www.anaconda.com/download (Download the latest version)
- To run, open Terminal on Mac or Command Prompt on Windows and run: jupyter notebook
- Or launch from the Anaconda Navigator
2
06-10-2020
repl.it
• repl.it: Online Python interpreter that runs in the browser
- Includes an interactive Python interpreter and script editor:
https://repl.it/languages/python3
Using repl.it
• Navigate to the Python IDE here: https://repl.it/languages/python3
• This is the Python shell, which allows you to write and run interactive Python commands
3
06-10-2020
Using repl.it
• Navigate to the Python IDE here: https://repl.it/languages/python3
• This is the Python script editor, which allows you to write, run, and save Python scripts
10
11
Python Help
• Python Language Resources
- Python Language Reference: https://docs.python.org/3/reference/index.html
12
4
06-10-2020
13