beeware / batavia

A JavaScript implementation of the Python virtual machine.
http://pybee.org/batavia
Other
1.39k stars 425 forks source link

RefreenceError: CodeMirror not defined #801

Closed ashneg closed 5 years ago

ashneg commented 5 years ago

Screenshot (25)

Expected Behavior

the output should be displayed for the respective python code

Current Behavior

Value error is being displayed (Most probably due to ReferenceError)

Steps to reproduce

  1. git clone Batavia and follow the setup steps here: https://github.com/beeware/batavia

  2. Running the test server using: python manage.py runserver

Also tried installing codemirror separately from npm and then binding it, but it doesn't work

Your Environment

martica commented 5 years ago

The codemirror error is spurious as far as I understand it. The real issue here is that we don't yet support python 3.7. If you try with python 3.4 through 3.6, you should be in much better shape.

ashneg commented 5 years ago

Thanks , it worked on python 3.5