<-- Previous Contents Page Next -->

Installing Learn on an Apple Mac

You need to install Docker and git.

installing git

installing Docker

You need to know how to start a command window. That's described here.

Start a command window, then download learn like so:

    git  clone  https://github.com/goblimey/learn-unix
That creates a directory called learn-unix containing the learn software.

Change directory to learn-unix and build the software like so:

    cd  learn-unix

    docker  build  .  -t  learnunix
(That's docker space build space dot space hyphen t space learnunix.)

That last command will take a few minutes and display a running commentary. If all goes well, the last few lines should be something like:

    Successfully built 446990c342ad
    Successfully tagged learnunix:latest

The build was successful and produced a Docker image with ID 446990c342ad.


<-- Previous Contents Page Next -->