/PyPlanets

A simple simulation of the solar system. A project based on TechWithTim's video.

Primary LanguagePython

PyPlanets

A simple simulation of the solar system made in python.

The program has only one external dependency, the Pygame library. So, in order to run it, just make sure you have pip installed in your system and do the following:

Python 3.7+

Windows

# Install pygame library
python -m pip install pygame
# Run the program
python main.py

Mac/Linux

# Install pygame library
pip3 install pygame
# Run the program
python3 main.py