瀏覽代碼

Mise à jour des instruction et du gitignore pour vscode

tags/v1.0-light^2
Fabien 3 年之前
父節點
當前提交
de5f020e0e
共有 2 個檔案被更改,包括 11 行新增3 行删除
  1. +1
    -1
      .gitignore
  2. +10
    -2
      README.md

+ 1
- 1
.gitignore 查看文件

@@ -101,7 +101,7 @@ celerybeat.pid

# SageMath parsed files
*.sage.py
.vscode
# Environments
.env
.venv


+ 10
- 2
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
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

Loading…
取消
儲存