Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

why showing ImportError: No module named markdownx when migrating in django...?

ImportError: No module named markdownx

markdown module is installed, but still this error shows when trying to migrate with the command

python manage.py migrate

I am trying to load project in remote. The project folder is loaded using scp command

like image 461
naveenv Avatar asked Jan 28 '26 06:01

naveenv


1 Answers

Try: to install it on remote server using below command

pip install django-markdownx

project settings.py

Add markdownx in installed apps.

project urls.py

url(r'^markdownx/', include('markdownx.urls'))
like image 179
Astik Anand Avatar answered Jan 30 '26 20:01

Astik Anand