artur24814 / HorseRacerGame

The final project of the `devesciaki` group
MIT License
1 stars 0 forks source link
pygame python

GambleGallop


Releases

Version 1.2.0. 10.12.2023

Version 1.3.0. 16.12.2023

Version 1.3.0. 30.12.2023


Clone and Run a Game

Before diving let’s look at the things we are required to install in our system.

python ->

Install virtual environment

pip install virtualenv

Now, we need to clone project from Github:-

Above the list of files, click Code.

Copy the URL for the repository.

Open Terminal.

Change the current working directory to the location where you want the cloned directory.

Type git clone, and then paste the URL you copied earlier.

$ git clone „paste your copied link”

Press Enter to create your local clone.

$ git clone „your copied link”
> Cloning into `Spoon-Knife`...<br>
> remote: Counting objects: 10, done.
> remote: Compressing objects: 100% (8/8), done.
> remove: Total 10 (delta 1), reused 10 (delta 1)
> Unpacking objects: 100% (10/10), done.

Making and Activating the Virtual Environment:-

python -m venv env

*If the python command doesn't work, try python3

env\Scripts\activate

Install the project dependencies:

pip install -r requirements.txt

Write this code python main.py

*If the python command doesn't work, try python3

Have fun 🦁