This project was created by Sebastian Beimers, Elias Hawa and Victor Li for Carleton University's MATH 3808 Winter 2023 course, taught by Jason Gao. The project is a video poker simulator that allows the user to play Jacks or Better video poker.
- Clone the repository by running this command in the terminal of whichever folder you would like to use. More details can be found here.
git clone https://github.com/sbeimers/3808-project.git- Change directory by running this command in the terminal.
cd 3808-project- Setup virtual environment with Python by running this command in the terminal.
python -m venv venv-
Activate virtual environment by running this command in the terminal. NOTE: keep in mind that the command is different for Windows and Mac.
-
On Windows:
Set-ExecutionPolicy Unrestricted -Scope Process .\venv\Scripts\activate
-
On Mac:
source venv/bin/activate
-
-
Install requirements by running this command in the terminal.
pip install -r requirements.txt- Run the project by running this command in the terminal.
python main.py