Hi!!! I'm testing some stuff for a game here.
If you want to run it, please follow this guide to download the code. If you know how to clone it with git, do that preferably.
Since I'm assuming you're new to working with python, I've created two scripts that'll create your virtual enviroment for this.
This project was made with Python 3.11.3 and VS Code. Python is required while VS Code is optional. For a gude on installing python, see the following;
The "begin" script will get you started off. The command to run it is different on linux and windows.
Windows Run the following commands;
cd (project directory)
./begin.ps1
Linux Run the following commands
cd (project directory)
chmod +x ./begin.sh
./begin.sh
3. Run the main.py script
The following command will run the main.py script;
python ./main.py
When you run begin.sh, you are creating a virtual enviroment. When you are done with the script, run the deactivate
command. Repeat step 2 once you've done this.