Python

UCI Libraries Digital Scholarship Services Fall 2019 workshop on Programming with Python

View the Project on GitHub UCI-Libraries/Python

UCI Libraries Digital Scholarship Services

Tuesday November 12, 2019 & Thursday November 14, 2019

1:00 PM - 5:00 PM

Instructor(s): Danielle Kane Helper(s): Shu Liu

REGISTER HERE

Please Note: You must be a UCI affiliate to register, please contact kaned@uci.edu if you are not a member of the UCI community to see if there is room before registering

General Information: Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum and first released in 1991, Python has a design philosophy that emphasizes code readability, notably using significant whitespace. It provides constructs that enable clear programming on both small and large scales. The best way to learn how to program is to do something useful, so this introduction to Python is built around a common scientific task: data analysis.

Who: The course is aimed at graduate students and other researchers, including undergrads, faculty, staff and community members. You don’t need to have any previous knowledge of the tools that will be presented at the workshop.

Where: Langson Library Rm 228. Get directions with OpenStreetMap or Google Maps.

When: November 12, 2019 & November 14, 2019. Add to your Google Calendar.

Requirements: Participants must bring a laptop with a Mac, Linux, or Windows operating system (not a tablet, Chromebook, etc.) that they have administrative privileges on. They should have a few specific software packages installed (listed below).

Accessibility: We are committed to making this workshop accessible to everybody. The workshop organisers have checked that:

The room is wheelchair / scooter accessible.
Accessible restrooms are available.

Materials will be provided in at the workshop and large-print handouts are available if needed by notifying the organizers in advance. If we can help making learning easier for you (e.g. sign-language interpreters, lactation facilities) please get in touch (using contact details below) and we will attempt to provide them.

Contact: Please email Danielle Kane at kaned@uci.edu for more information.

Syllabus: Programming with Python

  1. Using libraries
  2. Working with arrays
  3. Reading and plotting data
  4. Creating and using functions
  5. Loops and conditionals
  6. Defensive programming U7. sing Python from the command line

Setup

You will need access to the software described below. In addition, you will need an up-to-date web browser.

We maintain a list of common issues that occur during installation as a reference for instructors that may be useful on the Configuration Problems and Solutions wiki page.

The Bash Shell

Bash is a commonly-used shell that gives you the power to do simple tasks more quickly. Download the Git for Windows installer.

Run the installer and follow the steps bellow:
    Click on "Next".
    Click on "Next".
    Keep "Use Git from the Windows Command Prompt" selected and click on "Next". If you forgot to do this programs that you need for the workshop will not work properly. If this happens rerun the installer and select the appropriate option.
    Click on "Next".
    Keep "Checkout Windows-style, commit Unix-style line endings" selected and click on "Next".
    Keep "Use Windows' default console window" selected and click on "Next".
    Click on "Install".
    Click on "Finish".
If your "HOME" environment variable is not set (or you don't know what this is):
    Open command prompt (Open Start Menu then type cmd and press [Enter])
    Type the following line into the command prompt window exactly as shown:

    setx HOME "%USERPROFILE%"
    Press [Enter], you should see SUCCESS: Specified value was saved.
    Quit command prompt by typing exit then pressing [Enter]

This will provide you with both Git and Bash in the Git Bash program.

Mac OS X: The default shell in all versions of Mac OS X is Bash, so no need to install anything. You access Bash from the Terminal (found in /Applications/Utilities). See the Git installation video tutorial for an example on how to open the Terminal. You may want to keep Terminal in your dock for this workshop.

Linux: The default shell is usually Bash, but if your machine is set up differently you can run it by opening a terminal and typing bash. There is no need to install anything.

Python

Python is a popular language for research computing, and great for general-purpose programming as well. Installing all of its research packages individually can be a bit difficult, so we recommend Anaconda, an all-in-one installer.

Regardless of how you choose to install it, please make sure you install Python version 3.x (e.g., 3.6 is fine).

We will teach Python using the Jupyter notebook, a programming environment that runs in a web browser. For this to work you will need a reasonably up-to-date browser. The current versions of the Chrome, Safari and Firefox browsers are all supported (some older browsers, including Internet Explorer version 9 and below, are not).

Windows Video Tutorial: https://www.youtube.com/watch?v=xxQ0mzZ8UvA

1. Open https://www.anaconda.com/download/#windows with your web browser.
2. Download the Python 3 installer for Windows.
3. Install Python 3 using all of the defaults for installation except make sure to check Make Anaconda the default Python.

macOS Video Tutorial: https://www.youtube.com/watch?v=TcSAln46u9U

1. Open https://www.anaconda.com/download/#macos with your web browser.
2. Download the Python 3 installer for OS X.
3. Install Python 3 using all of the defaults for installation.

Linux

1. Open https://www.anaconda.com/download/#linux with your web browser.
2. Download the Python 3 installer for Linux.
(The installation requires using the shell. If you aren't comfortable doing the installation yourself stop here and request help at the workshop.)
3. Open a terminal window.
4. Type: bash Anaconda3-and then press tab. The name of the file you just downloaded should appear. If it does not, navigate to the folder where you downloaded the file, for example with: cd Downloads. Then, try again.
5. Press enter. You will follow the text-only prompts. To move through the text, press the space key. Type yes and press enter to approve the license. Press enter to approve the default location for the files. Type yes and press enter to prepend Anaconda to your PATH (this makes the Anaconda distribution the default Python).
6. Close the terminal window.