Solve Ipython in Django Shell_Plus AttributeError: ‘module’ object has no attribute ‘Shell’


Python manage.py shell_plus is a powerfull-tools that we will load all application from settings.py in Django. We no longer need to doing manual import to access some models. Ipython also another grandioso tools that provide best coloring syntax. Combining this both tools will made our day happy. But, sometimes you facing this problem when running django manage.py shell_plus :

1
AttributeError: ‘module’ object has no attribute ‘Shell’

Then solution for this problem is easy:

1
2
sudo pip uninstall ipython
sudo pip install ipython==0.10

Now all your problem shall gone! 😀


Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.