mesa
mesa copied to clipboard
Easier way to run Mesa examples
Consider if we can do this for Mesa examples:
import mesa.examples
schelling = mesa.examples.Schelling
schelling.ensure_dependencies() # will pip install the requirements
schelling.run()
# Without GUI
schelling.run(gui=False)
I like this.