From cbadf4e3132cb94acd2c17b13ca9a8f0da91cf9d Mon Sep 17 00:00:00 2001 From: adrianna Date: Sat, 5 Mar 2016 21:52:10 +0200 Subject: [PATCH] python2 vs python3 --- README | 10 ++++++++++ run_game.py | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/README b/README index a21e2e2..0553d38 100644 --- a/README +++ b/README @@ -10,6 +10,16 @@ can be found at https://pygame-zero.readthedocs.org/en/latest/installation.html. Running the game ================ +This game requires Python 3. + Run the game using: $ python -m koperkapel + +or, if your default python is Python 2, + +$ python3 -m koperkapel + +or just + +$ ./run_game.py diff --git a/run_game.py b/run_game.py index f48806a..072d2b2 100755 --- a/run_game.py +++ b/run_game.py @@ -1,5 +1,6 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """ Run Portentosa. """ import koperkapel.__main__ + -- 2.34.1