An open API service indexing awesome lists of open source software.

https://github.com/julesgrc0/dino


https://github.com/julesgrc0/dino

2d dino mini-game pygame python

Last synced: 10 months ago
JSON representation

Awesome Lists containing this project

README

          

# Dino Game

![Dino Game Menu](./demo/menu.png)
## How to play ?

You need to install python 3.9 first to play the dino game.

> Download python

[Click here](https://www.python.org/downloads/) and download python to your computer.

> Install libraries

```cmd
pip install pygame pymitter
```

> Download and Start the game

Open the Powershell and enter the scripts below.

```powershell
$repos = "https://codeload.github.com/JulesG10/Dino/zip/refs/heads/master"

$download_file = (New-Object -ComObject Shell.Application).NameSpace('shell:Downloads').Self.Path + "\Dino.zip"

$download_unzip_file = $download_file.replace("Dino.zip", "Dino")

Invoke-WebRequest -Uri $repos -OutFile $download_file

Expand-Archive -LiteralPath $download_file -DestinationPath $download_unzip_file

cd $download_unzip_file
cd "Dino-master"
python dino.py
```

> In game

![Dino In Game](./demo/game.png)

> Live Console

![Dino Live Console](./demo/console.png)