layout | title | root |
---|---|---|
page |
Setup |
. |
You need to download some files to follow this lesson:
-
Download [make-lesson.zip][zip-file].
-
Move
make-lesson.zip
into a directory which you can access via your bash shell. -
Open a Bash shell window.
-
Navigate to the directory where you downloaded the file.
-
Unpack
make-lesson.zip
:$ unzip make-lesson.zip
{: .source}
-
Change into the
make-lesson
directory:$ cd make-lesson
{: .source}
You also need to have the following software installed on your computer to follow this lesson:
Make is a standard tool on most Linux systems and should already be available.
Check if you already have Make installed by typing make -v
into a terminal.
One exception is Debian, and you should install Make from the terminal using
sudo apt-get install make
.
You will need to have Xcode installed (download from the
Apple website).
Check if you already have Make installed by typing make -v
into a terminal.
Use the Software Carpentry Windows installer.
Python2 or Python3, Numpy and Matplotlib are required. They can be installed separately, but the easiest approach is to install Anaconda python https://www.continuum.io/downloads which includes all of the necessary python software.
[zip-file]: {{ page.root }}/files/make-lesson.zip