[Django]-Django-mptt error. Can't find admin/mptt_change_list.html template

3👍

The solution was to delete mptt using sudo pip uninstall django-mptt
and install it again using pip: sudo pip install django-mptt --upgrade

1👍

Well as for as i know you can install Any python django package there easy ways:

1.)

You can do like via

pip install <package Nmae>

for sometime sudo pip install <packageName> also works

2.)

Then download the tar file and extract from that directory you can install via

python setup.py insatll

3.)

And here you did two so try this thing also

download the mptt folder and put it into your django project. Hope this will work

Leave a comment