From 33a1266d38f23bc82a7137133dd7ba2b74534e2a Mon Sep 17 00:00:00 2001 From: Fabien Date: Tue, 10 Nov 2020 15:47:53 +0100 Subject: [PATCH 1/4] =?UTF-8?q?J'ai=20enlev=C3=A9=20les=20apostrophes...?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 05554ca..7b50d6e 100644 --- a/README.md +++ b/README.md @@ -8,4 +8,4 @@ python3 -m virtualenv env . env/bin/activate pip install pygame pip install --no-deps pgzero -python aladdin.py``` \ No newline at end of file +python aladdin.py \ No newline at end of file From de5f020e0e94652fad5d88bb1b429a3d15b5fa03 Mon Sep 17 00:00:00 2001 From: Fabien Date: Tue, 10 Nov 2020 15:57:47 +0100 Subject: [PATCH 2/4] =?UTF-8?q?Mise=20=C3=A0=20jour=20des=20instruction=20?= =?UTF-8?q?et=20du=20gitignore=20pour=20vscode?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 +- README.md | 12 ++++++++++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 13d1490..1320986 100644 --- a/.gitignore +++ b/.gitignore @@ -101,7 +101,7 @@ celerybeat.pid # SageMath parsed files *.sage.py - +.vscode # Environments .env .venv diff --git a/README.md b/README.md index 7b50d6e..8c4f111 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,18 @@ Un génie rebondissant dans un monde oriental -pour faire fonctionner en environnement virtuel : +pour faire fonctionner en environnement virtuel sous linux : ```bash python3 -m virtualenv env . env/bin/activate pip install pygame pip install --no-deps pgzero -python aladdin.py \ No newline at end of file +python aladdin.py + +sous windows (vous devez avoir installé virtualenv avec `pip install virtualenv`): +```powershell +virtualenv env +.\\env\\Script\\activate +pip install pygame +pip install --no-deps pgzero +python aladdin.py From 65dcdb2146b9bea92b47d73458efa259a95641a4 Mon Sep 17 00:00:00 2001 From: Fabien Date: Tue, 10 Nov 2020 16:00:06 +0100 Subject: [PATCH 3/4] Typo --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8c4f111..db8caff 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ python3 -m virtualenv env pip install pygame pip install --no-deps pgzero python aladdin.py +``` sous windows (vous devez avoir installé virtualenv avec `pip install virtualenv`): ```powershell @@ -17,3 +18,4 @@ virtualenv env pip install pygame pip install --no-deps pgzero python aladdin.py +``` From e135568963ca39143e731e49e09b48c4bccb5ecf Mon Sep 17 00:00:00 2001 From: Fabien Date: Tue, 10 Nov 2020 16:06:08 +0100 Subject: [PATCH 4/4] derniers chgments --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index db8caff..8382924 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ python aladdin.py sous windows (vous devez avoir installé virtualenv avec `pip install virtualenv`): ```powershell virtualenv env -.\\env\\Script\\activate +.\env\Scripts\activate pip install pygame pip install --no-deps pgzero python aladdin.py