AppliedAlgebraCourse: Difference between revisions
Line 21: | Line 21: | ||
If you have no prior programming experience, I recommend you work through a Python tutorial using ipython: as you read, run the commands and get a feel for what's happening. | If you have no prior programming experience, I recommend you work through a Python tutorial using ipython: as you read, run the commands and get a feel for what's happening. | ||
=== Beginner | ===Beginner Guide=== | ||
http://hetland.org/writing/instant-hacking.html | http://hetland.org/writing/instant-hacking.html | ||
http://www.ucs.cam.ac.uk/docs/course-notes/unix-courses/PythonAB | http://www.ucs.cam.ac.uk/docs/course-notes/unix-courses/PythonAB | ||
===Intermediate Guide=== | |||
http://software-carpentry.org/v5/novice/python/index.html | |||
===Additional Resources=== | |||
https://github.com/UW-Madison-ACI/boot-camps | |||
http://software-carpentry.org/lessons.html | |||
==If you've done some programming== | ==If you've done some programming== |
Revision as of 22:42, 26 January 2015
Getting started with Python/Numpy/SciPy
Follow the instructions here: https://github.com/UW-Madison-ACI/boot-camps/blob/2015-01-13/setup/README.md
A short summary:
1. You'll need to install Python on your machine. We recommend the Anaconda python distribution:
https://store.continuum.io/cshop/anaconda/
During installation, make Anaconda your default Python installation (unless you have some reason not to do this).
2. You'll need a text editor to write Python in. Any text editor will work, but there are ones that highlight Python keywords which is handy, such as Text Wrangler or Sublime Text.
First steps
Once Python is installed, you're ready to get started! Open up a command line prompt (e.g. Command Prompt on Windows, Terminal on OS X) and type
ipython
to start an interactive Python shell. You can begin entering Python commands and manipulating variables immediately.
If you have no prior programming experience, I recommend you work through a Python tutorial using ipython: as you read, run the commands and get a feel for what's happening.
Beginner Guide
http://hetland.org/writing/instant-hacking.html
http://www.ucs.cam.ac.uk/docs/course-notes/unix-courses/PythonAB
Intermediate Guide
http://software-carpentry.org/v5/novice/python/index.html
Additional Resources
https://github.com/UW-Madison-ACI/boot-camps
http://software-carpentry.org/lessons.html
If you've done some programming
If you have some programming experience, or once you're comfortable with the information above, please follow through this guide: