When you're writing code, it's nice to have a text
editor that is optimized for writing code, with features
like automatic color-coding of key words.
The default text editor on Mac OS X and Linux is usually set to Vim,
which is not famous for being intuitive.
If you accidentally find yourself stuck in it,
try typing the escape key,
followed by :q!
(colon, lower-case q, exclamation mark),
then hitting Return
to return to the shell.
Bash is a commonly-used shell. Using a shell gives you more power to do more tasks more quickly with your computer.
Git is a state-of-the-art version control system. It lets you track who made changes to what when and has options for easily updating a shared or public version of your code on github.com.
Python is becoming very popular in scientific computing, and it's a great language for teaching general programming concepts due to its easy-to-read syntax. We teach with Python version 2.7, since it is still the most widely used. Installing all the scientific packages for Python individually can be a bit difficult, so we recommend an all-in-one installer.
Download and install Anaconda CE.
Use all of the defaults for installation except make sure to check Make Anaconda the default Python.
Install Git for Windows by downloading and running the installer. This will provide you with both Git and Bash in the Git Bash program.
After installing Python and Git Bash:
- Download the installer. (This installer requires an active internet connection.)
- If the file opens directly in the browser select File → Save Page As to download it to your computer.
- Double click on the file to run it.
nano
is the editor installed by the Software Carpentry Installer.
It is a basic editor integrated into the lesson material.
Notepad++ is a popular free code editor for Windows. Be aware that you must add its installation directory to your system path in order to launch it from the command line (or have other tools like Git launch it for you). Please ask your instructor to help you do this.
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
). You may want
to keep Terminal in your dock for this workshop.
We recommend
Text Wrangler or
Sublime Text.
In a pinch, you can use nano
,
which should be pre-installed.
Install Git for Mac 10.8 (Mavericks or newer) by downloading and running the installer. For older versions of OS X (10.6-10.8, before Mavericks) use the most recent available installer for Snow Leopard available here.
Download and install Anaconda CE.
Use all of the defaults for installation except make sure to check Make Anaconda the default Python.
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.
If Git is not already available on your machine you can try
to install it via your distribution's package manager
(e.g. apt-get
or yum
).
Kate is one option for Linux users.
In a pinch, you can use nano
,
which should be pre-installed.
We recommend the all-in-one scientific Python installer Anaconda. (Installation requires using the shell and if you aren't comfortable doing the installation yourself just download the installer and we'll help you at the boot camp.)
- Download the installer that matches your operating system and save it in your home folder.
- Open a terminal window.
- Type
bash Anaconda-
and then press tab. The name of the file you just downloaded should appear. - Press enter. You will follow the text-only
prompts. When there is a colon at the bottom of the
screen press the down arrow to move down through the
text. Type
yes
and press enter to approve the license. Press enter to approve the default location for the files. Typeyes
and press enter to prepend Anaconda to yourPATH
(this makes the Anaconda distribution the default Python).
Open a terminal window and type these commands, pressing enter after each one:
git --version
python --version
ipython --version
python -c "import nose"
If your setup is correct, the git
, python
, and ipython
version identifiers will be shown on your screen;
the last command will not produce any output.