I am trying to import changelist_ordering. So I have tried to install the package django-changelist-ordering. But I am getting the error:
No matching distribution found for changelist-ordering
Can anyone help me to solve this issues.
I am trying to import changelist_ordering. So I have tried to install the package django-changelist-ordering. But I am getting the error:
No matching distribution found for changelist-ordering
Can anyone help me to solve this issues.
 
    
     
    
    First of all install changelist-ordering by performing the following steps:
git clone https://github.com/SergeyKubrak/django-changelist-orderingcd django-changelist-orderingsudo python setup.py buildsudo python setup.py installor you can install the package by running just one command (@jonrsharpe):
pip install git+https://github.com/SergeyKubrak/django-changelist-ordering
Now in your projects settings, include the app changelist_ordering in your INSTALLED_APPS
and then wherever you wanna use ChangeListOrdering import as
from changelist_ordering.admin import ChangeListOrdering
If this also does not work for you, check whether the module is installed in your virtual environment or not with
pip list | grep changelist-ordering
This should get you a result if changelist-ordering is present in your virtual environment else your Django application is trying to access the module which is not present in your virtual environment.
 
    
    