Skip to content

Manny-op/CPSC-254-Tank-Runner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Tank Game 👾🕹️

Made by Emmanuel Salcedo, Mario Linares, Michael Rojas

Using PyGame

For development, use Virtual Environment. When you first install, activate virtual environment and run For development and execution of the program, use Virtual Environment.

Virtual Environment

python3-venv is neccessary to create virtual environment sudo apt install python3-venv

For creation of virtual environment: python3 -m venv venv

To activate the environment: source venv/bin/activate

To install the required packages: pip install -r requirements.txt

To run the game: ./main.py

To deactivate the virtual environment: deactivate