ImportError: No module named 'django.core.urlresolvers'

PythonPython 3.xDjangoPython 3.5Django 2.0

Python Problem Overview


I am working on Django project where I need to create a form for inputs. I tried to import reverse from django.core.urlresolvers. I got an error:

line 2, in from django.core.urlresolvers import reverse ImportError: No module named 'django.core.urlresolvers'

I am using Python 3.5.2, Django 2.0 and MySQL.

Python Solutions


Solution 1 - Python

Django 2.0 removes the django.core.urlresolvers module, which was moved to django.urls in version 1.10. You should change any import to use django.urls instead, like this:

from django.urls import reverse

Note that Django 2.0 removes some features that previously were in django.core.urlresolvers, so you might have to make some more changes before your code works. See the features deprecated in 1.9 for details on those additional changes.

Solution 2 - Python

if you want to import reverse, import it from django.urls

from django.urls import reverse

Solution 3 - Python

You need replace all occurrences of:

from django.core.urlresolvers import reverse

to:

from django.urls import reverse

enter image description here

NOTE: The same apply to reverse_lazy

in Pycharm Cmd+Shift+R for starting replacment in Path.

Solution 4 - Python

use from django.urls import reverse instead of from django.core.urlresolvers import reverse

Solution 5 - Python

For those who might be trying to create a Travis Build, the default path from which Django is installed from the requirements.txt file points to a repo whose django_extensions module has not been updated. The only workaround, for now, is to install from the master branch using pip. That is where the patch is made. But for now, we'll have to wait.

You can try this in the meantime, it might help

- pip install git+https://github.com/chibisov/drf-extensions.git@master

- pip install git+https://github.com/django-extensions/django-extensions.git@master

Solution 6 - Python

For django version greater than 2.0 use:

from django.urls import reverse

in your models.py file.

Solution 7 - Python

urlresolver has been removed in the higher version of Django - Please upgrade your django installation. I fixed it using the following command.

pip install django==2.0 --upgrade

Solution 8 - Python

If your builds on TravisCI are failing for this particular reason, you can resolve the issue by updating the Django Extensions in your requirements.txt

pip install --upgrade django-extensions

This will update the extensions to use Django 2+ modules.

Solution 9 - Python

To solve this either you down-grade the Django to any version lesser than 2.0. pip install Django==1.11.29.

Solution 10 - Python

Upgrading Django 1.9 (Python 2.7) to Django 3.2 (Python 3.9)

This could be solved in a one line bash replacement:

grep -ril "from django.core.urlresolvers" your_source_code_folder | xargs sed -i 's@from django.core.urlresolvers@from django.urls@g'

Solution 11 - Python

In my case the problem was that I had outdated django-stronghold installed (0.2.9). And even though in the code I had:

from django.urls import reverse

I still encountered the error. After I upgraded the version to django-stronghold==0.4.0 the problem disappeard.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionviratayya salimathView Question on Stackoverflow
Solution 1 - PythonknbkView Answer on Stackoverflow
Solution 2 - PythonSurajanoView Answer on Stackoverflow
Solution 3 - PythonandilabsView Answer on Stackoverflow
Solution 4 - PythonAmit BahadurView Answer on Stackoverflow
Solution 5 - PythonemalingaView Answer on Stackoverflow
Solution 6 - PythonKazi Imam HasanView Answer on Stackoverflow
Solution 7 - PythonBapurayView Answer on Stackoverflow
Solution 8 - PythonwillieswanjalaView Answer on Stackoverflow
Solution 9 - Pythonuser13070322View Answer on Stackoverflow
Solution 10 - PythonshakaranView Answer on Stackoverflow
Solution 11 - PythongawiView Answer on Stackoverflow