How to solve the ImportError: cannot import name simplejson in Django

后端 未结 3 1419
长情又很酷
长情又很酷 2021-02-19 20:44

I\'m trying to build a realtime chat app in Django(1.7.1). It seems that I needed to install Redis and ishout.js. So I installed them by following the instructions.

Aft

3条回答
  •  既然无缘
    2021-02-19 21:16

    This is a bug in the application itself; unfortunately the error still persists in the master branch at git.

    I submitted a pull request to fix the error; in the meanwhile you can do the following:

    pip uninstall django-realtime
    pip install git+https://github.com/burhan/django-realtime.git@import-fix
    

提交回复
热议问题