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
- [Django]-How to filter queries with date range in django
- [Django]-Django project with a table prefix
- [Django]-Get image full url on Django Channel Response
- [Django]-Redux-Saga pass headers to axios.post call
- [Django]-Django rest framework unique together error message not displayed anymore
Source:stackexchange.com