An interactive quiz program that allows users to respond to questions by raising signs.
To get started, first clone the GitHub repository to your local machine:
git clone https://github.com/chxadr/raise-your-sign.git
cd raise-your-signNext, you need to install the project setup.
-
On UNIX-like systems:
Simply run the following command in your terminal:
make install
This will install the necessary dependencies. Make sure you have Python 3.13 installed before running this command.
-
On Windows:
You can use the Python Install Manager to install Python 3.13 and manage your Python environments. It’s a really handy tool!
Run the provided script from Command Prompt (not PowerShell, as it may not work):
scripts\envinstall.cmd
This will install Pyhton 3.13 (if you have the Python Install Manager installed) and provide the necessary dependencies.
Once the installation done, go to the test directory and just run python test.py.
-
On UNIX-like systems:
Simply run the following command in your terminal:
make build
This will build an executable inside the
main/dist/directory. You can then run the executable withmake run -
On Windows:
You can run the provided script from Command Prompt:
scripts\compilexe.cmd
Once done just navigate to the
main/dist/directory to run thequiz.exeexecutable.
Sometimes when you add or remove features in the project, it's important to clear Python's cache. This can help prevent strange bugs.
-
On UNIX-like systems:
You can clean up the cache and other generated files by running:
make clean
-
On Windows:
Use the provided script to clean up:
scripts\clean.cmd