Asteroids is a space-themed multidirectional shooter arcade video game. The player controls a single spaceship in an asteroid field which is periodically traversed by flying saucers. The object of the game is to shoot and destroy the asteroids.
- Create a virtual environment at the top level of your project directory:
uv venv- Activate the virtual environment:
source .venv/bin/activateYou should see (Asteroids) at the beginning of your terminal prompt
- Install dependency:
uv sync- Run the game:
uv run main.pyUsing W, S to move up and down. A, D to turn direction and SPACE to shoot.
