Commit f36054ea authored by Anthony Jacob's avatar Anthony Jacob
Browse files

Update README.md

parent ce28a64e
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -8,20 +8,20 @@ python-snake is a side project I developped in order to practice Python
the project is using specific dependencies other than the basic python module
I developped it using Python 3.8.2

###clone the repo with
**clone the repo with**

```
git clone https://gitlab.anthony-jacob.com/anthony.jacob/python-snake.git
```

###create a Python virtual environment
**create a Python virtual environment**

```
cd python-snake
python -m venv venv
```

###activate the Virtual environment
**activate the Virtual environment**

with Windows command:
`venv\Scripts\activate.bat`
@@ -32,11 +32,11 @@ with powershell:
with bash:
`source <venv>/bin/activate`

###install the dependencies
**install the dependencies**

`pip install -r requirements.txt`

###run 
**run**

`python main.py`