This is a free platform/course for people to teach themselves programming in Python, especially complete beginners at programming. It is carefully designed to reduce frustration and guide the user while still ensuring that they learn how to solve problems. The goal is for as many people as possible to learn programming.
You can try it out here: https://futurecoder.io/
Currently this is a work in progress. While most of the groundwork is in place, there is a lot to do to make this a complete course ready for users. All kinds of help are needed and greatly appreciated - please consider contributing or donating!
Alternatively, come have a chat on slack.
For a fuller demonstration and explanation, watch this video.
| The course is a fully interactive 'book' which requires the user to run code in the provided editor or shell to advance: | |
| This requires a mixture of solving problems or simply typing and running provided code. In the latter case, the user is often kept engaged by being asked to predict the output in a simple multiple choice question: | The code at each step is checked automatically. If needed, the student can get small hints to gradually guide them to the solution: |
| If they're still really stuck, they can reveal the solution bit by bit: |
Or in some cases solve a Parsons problem instead, where they have to put a shuffled solution in the correct order: |
Tracebacks are more helpful than usual, with several enhancements:
|
Common mistakes can be caught and pointed out to the student. This includes specific checks in some steps as well as linting tailored for beginners. |
|
Several debuggers are provided, including snoop... |
|
|
...and Python Tutor |
|
-
Fork the repository, and clone your fork.
-
If you want to run the system using Docker, which may be easier and will more closely resemble the production environment:
- Ensure you have docker and docker-compose installed.
- Create an empty file called
.envin the repo root. - Run
docker-compose up. - Skip the following two steps, everything should be running now.
-
In the
backendfolder:-
Ensure the
pythoncommand points to Python 3.9. -
If you are on Linux/OSX, run
./setup.sh.If you are on Windows: (in a Powershell window with "Run as Administrator")
- Run
Set-ExecutionPolicy -ExecutionPolicy Bypassto enable running scripts in Powershell. - Run
.\setup.ps1.
This will:
- Install
poetryif needed. - Create a virtualenv and install Python dependencies.
- Create a sqlite database, run migrations, and create a user.
- Run
-
Activate the virtualenv with
poetry shell. -
Run the backend development server with
python manage.py runserver.- If you get
ModuleNotFoundError: No module named 'resource'then set the environment variableSET_LIMITSto0.
- If you get
-
-
In the
frontendfolder:-
Ensure you have version 14.15.4 (lts/fermium) of
nodeand version 7.5.2 ofnpm.If you are on Windows: (in a Powershell window with "Run as Administrator")
- Run
npm install --global windows-build-tools.
- Run
-
Run
npm cito download dependencies. -
Run
npm startto start the frontend development server.
-
-
Go to http://localhost:3000/accounts/login/ and login with the email "admin@example.com" and the password "admin".
-
You should be redirected to http://localhost:3000/toc/ and see the Table of Contents.
To learn more about the system, see the contributing guide.
To explore the course more freely:
- Click the hamburger menu icon in the top left.
- Click Settings.
- Turn Developer mode on.
- This should give you two red buttons floating at the bottom of the screen. They change the currently active step, so you can move forward without having to complete exercises or backwards to test a step again.










