The Scary Story - A Text Adventure
This is a text adventure which I made in python 3 and is also one of my first projects.
Installation:
Make sure you have python 3 installed.
Linux:
Open a terminal and copy and paste the commands below.
git clone https://github.com/atwoyearold14/The-Scary-Story.git && cd The-Scary-Story
pip3 install -r requirements.txt
Then, run python3 main.py
If you die at any time run python3 main.py again and you will restart from the beginning.
Windows:
Download the zip file and extract it
Open up a command prompt window and navigate to the directory where you extracted the zip file.
Run pip install -r requirements.txt
Then, you can run python main.py
If you die at any time run python main.py again and you will restart from the beginning.
Tested On:
-
Windows
-
Raspberry Pi OS
-
Ubuntu
-
ChromeOS Linux Terminal
Linux Dependencies:
If you get any errors while installing the requirements, try upgrading pip then installing using the following command.
pip install --upgrade pip setuptools
The simpleaudio module also needs other dependencies which need to be installed using the following command.
sudo apt-get install -y python3-dev libasound2-dev
This command is needed for the program to run on Debian variants of linux (Raspberry Pi OS ChromeOS.)
As I said this is one of my first projects, so any feedback is appreciated.
If you have any questions, put them in Issues.
And if you have any suggestions, put them in pull requests
-a_twoyearold