How to install the Zelle graphics package

Slides:



Advertisements
Similar presentations
Clicking on the link for the.tns file gives you will get the following screen: Select Save File and click OK.
Advertisements

Managing Your Site – Lesson 61 Managing Your Site Lesson 6.
COMPUTER PROGRAMMING Task 1 LEVEL 6 PROGRAMMING: Be able to use a text based language like Python and JavaScript & correctly use procedures and functions.
Lesson One: The Beginning Chapter 2: Processing Learning Processing Daniel Shiffman Presentation by Donald W. Smith Graphics from built-in help reference.
Building Web Pages With Microsoft Office. Introduction This tutorial is for the beginning web builder. It utilizes software that you already have, Microsoft.
Java Programming Working with TextPad. Using TextPad to Work with Java This text editor is designed for working with Java You can download a trial version.
Microprocessor Simulation
Scite Scintilla integrated text editor. Click here.
A Visual Introduction to PC SAS. Start SAS by double-clicking on the SAS icon...
Update Dual Boot MBP/iMac Windows 7 Partition Moving away from the Deploy Studio Imaging Paradigm.
The Basic Java Tools A text editor to write Java program source code. A compiler to translate source code into bytecode. An interpreter to translate.
Retrieving Data Guide Rebecca and John Moores UCSD Cancer Center DNA Sequencing Shared Resource.
Chapter 1: Python Basics CSCI-UA 0002 – Introduction to Computer Programming Mr. Joel Kemp.
Installing and Configuring Tomcat A quick guide to getting things set up on Windows.
Streaming Twitter. Install pycurl library Use a lab computer From the course website Download the links from pycurl and twitter streamer Extract site-packages.zip,
Installing the SAFARIODBC.EXE For use with Excel May 3, 2002.
VMWare Workstation Installation. Starting Vmware Workstation Go to the start menu and start the VMware Workstation program. *Note: The following instructions.
 Whether you are on or off campus, using a PC, Mac or mobile device, you can access UNCW software (including Microsoft Office) through TealWare in the.
CS Tutorial 1 Getting Started with Visual Studio 2012 (Visual Studio 2010 are no longer available on MSDNAA, please choose Visual Studio 2012 which.
How To: Add HYPERLINKS and IMAGES with HYPERLINKS to your Outlook Signature. By: Tom Jackson
Internet of Things with Intel Edison Compiling and running Pierre Collet Intel Software.
Use THIS LINK to get to AutoDesk’s Educational webpage.THIS LINK.
Installing Apache Axis Setting up your Tomcat server to use Web Services.
How to Tag a Corpus Using Stanford Tagger. Accuracy All tokens: 97.32% Unknown words: 90.79%
Installation Walk-Through Step 1 – Download the Installation Files
Itty Bitty Computer Directions on how to install Linux on your flash drive and have the smallest computer you can afford right now!
SAFARI ODBC INSTALLATION Go to the TRECA home WEB page.
VMWare Workstation Installation. Starting Vmware Workstation Go to the start menu and start the VMware Workstation program. *Note: The following instructions.
Programming for GCSE 1.0 Beginning with Python T eaching L ondon C omputing Margaret Derrington KCL Easter 2014.
IDLE An IDE for Python bundled with the program release Click on IDLE (Python GUI) in the Start menu under the Python program group  Get the IDLE Python.
Java Programming, Second Edition Appendix A Working with Java SDK 1.4.
File-zilla uploads Andre Naylor| Account Manager 15 th August 2011 TMS Reports.
Python module distribution. Modules in Python Modules are everywhere.
Test Automation For Web-Based Applications Portnov Computer School Presenter: Ellie Skobel.
ENDNOTE Installation Guide. E ENDNOTE ON LIBRARY PAGE ( Scroll down to see download instructions.
How to Install Eclipse Click hereClick here to download Eclipse.
DATABASE DESIGN LAB Session 1 Getting Acquainted with Microsoft Access Database Management System Using for first half of the course Desktop based user.
Windows Installation Tutorial NASA ARSET For Python help, contact: Justin Roberts-Pierel
You may have already done this… Download the class files to the desktop Expand those files into root of USB stick Change your USB stick to drive “Z”!
Operating Systems. An operating system (os) is a software program that enables the computer hardware to communicate and operate with the computer software.
Copy of the from the secure website - click on the AccoridaLife.zip link.
1 Getting Started with C++ Part 1 Windows. 2 Objective You will be able to create, compile, and run a very simple C++ program on Windows, using Microsoft.
KompoZer. What is it? A FREE product used to design websites A FREE product used to design websites A WYSIWYG HTML Editor A WYSIWYG HTML Editor –WYSIWYG:
Subversion (SVN) is a widely used version control system and an essential piece of the MIMES collaborative modeling environment. It allows us to manage.
1. Starting 1 Let’s Learn Saenthong School, January – February 2016 Teacher: Aj. Andrew Davison, CoE, PSU Hat Yai Campus
Install CB 1.8 on Ubuntu. Steps Followed Install Ubuntu (Ubuntu LTS) on Virtual machine – (VMware Workstation) (
Web Scraping with Python and Selenium. What is Web Scraping?  Software technique for extracting info from websites Get information programmatically that.
Creating and Using Modules Sec 9-6 Web Design. Objectives The student will: Know how to create and save a module in Python Know how to include your modules.
Using This PowerPoint This PowerPoint presentation assumes you already have both the Java JDK and JCreator installed and all that you need is the proper.
Windows Installation Tutorial NASA ARSET For Python help, contact: Justin Roberts-Pierel
Creating Web Pages with Links, Images, and Embedded Style Sheets
Development Environment
Introduction to Computational Thinking
How to Download and Install Windows Live Messenger
Python: Simple Graphics and Event-driven Programming
Introduction to Computational Thinking
Macrosystems EDDIE: Getting Started + Troubleshooting Tips
Dashboard
How to Install Borland C++
How to Install Borland C++
BSc in Digital Media, PSUIC
How to Install Borland C++
Getting Started: Amazon AWS Account Creation
Macrosystems EDDIE: Getting Started + Troubleshooting Tips
Windows Installation Tutorial
Macrosystems EDDIE: Getting Started + Troubleshooting Tips
More to Learn Creating a shortcut
HOW TO CREATE BIBLIOGRAPHY:
Macrosystems EDDIE: Getting Started + Troubleshooting Tips
Microsoft Outlook (Disabling desktop notifications)
Presentation transcript:

How to install the Zelle graphics package

Zelle’s package This is a package written by John M. Zelle for teaching Python graphics It is available at http://mcsp.wartburg.edu/zelle/python/ The link on that page is graphics.py Do not left click on this link, right click on it This gives you a menu – choose “Save Link (or Target) As” Save the file in a location where you will know where it is, like the Desktop It’s a small file, will not take long to download Make sure it is called graphics.py when you save it

The place to put graphics.py on a PC The best place to put it is within the same file structure as the Python executable On a Windows machine, assuming you do have Python installed, on the C drive, the location the file should be is C:\Python3X\Lib\site-packages\graphics.py where the 3X is the version of Python you have installed The other place you can put the file is in the same folder as your source (.py) file. This is not the best place because it means if you have several folders for several programs, you would need a copy of the graphics.py file in each of them. Clearly you do not want to name YOUR SOURCE FILE graphics.py!

The place to put graphics.py on a Mac The best place to put it is within the same file structure as the Python executable On a Macintosh, the most typical place is \bin\local\user\python\ but you will have to check. You need to find the location of the python executable. This can be done from a Terminal window with the command “type –a python”. It will return a path. Put the graphics.py file in that location. The other place you can put the file is in the same folder as your source (.py) file. This is not the best place because it means if you have several folders for several programs, you would need a copy of the graphics.py file in each of them. Clearly you do not want to name YOUR SOURCE FILE graphics.py!

To verify it is installed From the Shell window in your favorite IDE, give the “import graphics” command If graphics.py is found, it will just come back with another prompt If graphics.py is not found, you will get an error message Note: if you put graphics.py in the same folder as your source code, make sure you have saved the source code at least once, otherwise the IDE will not know where to look for graphics.py Note: it does not matter which IDE you are using, IDLE or WingIDE. The location of the graphics.py file is the same.