This is a Zelda-inspired game made using Pygame and Python.
To get started, you'll need to clone repo and create a virtual environment and install the required packages. Here are the steps:
- clone the repository"
git clone https://github.com/FluffyRudy/zelda.git
- Create a virtual environment:
Open a terminal and navigate to the directory where you cloned the repository. Then, run the following command to create a new virtual environment:
This will create a new virtual environment named
venv
.
cd zelda
python3 -m venv .env
- Activate the virtual environment:
Depending on your operating system, activate virtual environment:
-
Linux/macOS:
source .env/bin/activate
-
Windows:
.env\Scripts\activate
- Install the required packages:
Once the virtual environment is activated, you can install the required packages by running the following command:
pip install -r requirements.txt
- Running the game
python3 main.py