You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After navigating to the desired folder where we want to download the repository : git clone https://github.com/projectmesa/mesa.git
Now navigating to a random example e.g. : cd mesa/examples/Schelling
the example should run by typing : python3 run.py
For some reason I get an unexpected error : AttributeError: type object 'IOLoop' has no attribute 'initialized'
And it's true because :
in visualization/ModularVisualization.py in the class ModularServer in def launch() there is startLoop = not tornado.ioloop.IOLoop.initialized()
2 but in tornado/ioloop.py in the class IOloop there is no attribute initialized!
Any help?
The text was updated successfully, but these errors were encountered:
After navigating to the desired folder where we want to download the repository :
git clone https://github.com/projectmesa/mesa.git
Now navigating to a random example e.g. :
cd mesa/examples/Schelling
the example should run by typing :
python3 run.py
For some reason I get an unexpected error :
AttributeError: type object 'IOLoop' has no attribute 'initialized'
And it's true because :
startLoop = not tornado.ioloop.IOLoop.initialized()
2 but in tornado/ioloop.py in the class IOloop there is no attribute initialized!
Any help?
The text was updated successfully, but these errors were encountered: