# django apps/modules not being found

**URL:** https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847
**Category:** Getting Started
**Created:** [October 21, 2024, 9:47pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847 "2024-10-21T21:47:56Z")
**Posts on this page:** 19
**Page:** 1

<div class="post-metadata">

### Author: ![ido008008](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/ido008008/32/24717_2.png) [@ido008008](https://forum.djangoproject.com/u/ido008008)
#### Post date: [October 21, 2024, 9:47pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/1 "2024-10-21T21:47:56Z")

</div>

hey, im trying to create a website using django and i installed django and a lot of apps like django\_js\_asset and it cant find most of them it says: no module name ‘django\_js\_asset’ and it says that to almost everything and no matter what ive tried i couldnt fix it, i double checked everything… anyone knows what can i do?

---

<div class="post-metadata">

### Author: ![KenWhitesell](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/kenwhitesell/32/280_2.png) [@KenWhitesell](https://forum.djangoproject.com/u/KenWhitesell)
#### Post date: [October 21, 2024, 9:59pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/2 "2024-10-21T21:59:22Z")

</div>

Welcome @ido008008 !

You’re going to need to be a lot more specific about exactly what you’ve done. This includes specifically identifying how you’ve installed Django and these other apps. It’ll also be helpful if you identify (specifically) what information you’re using to guide you along these steps.

---

<div class="post-metadata">

### Author: ![ido008008](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/ido008008/32/24717_2.png) [@ido008008](https://forum.djangoproject.com/u/ido008008)
#### Post date: [October 21, 2024, 10:12pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/3 "2024-10-21T22:12:48Z")

</div>

im new and im using chatgpt to write the codes, so ill give you a summery of what i did so far. Project Summary

1. Environment Setup:

I created a virtual environment using venv.

I activated the virtual environment.

1. Django Installation:

I installed Django using the command pip install Django.

1. Project Creation:

I created a new Django project named myproject with the command django-admin startproject myproject.

1. App Installation:

I installed necessary Django applications, including:

django-allauth

django-axes

django-ckeditor

django-cors-headers

django-filter

django-js-asset

django-rest-auth

django-simple-history

django-storages

djangorestframework

I used the command pip install \<app\_name\> for each application.

I listed all installed packages using the command pip list.

1. Configuration:

I updated settings.py to include all the installed applications in the INSTALLED\_APPS list.

I set SITE\_ID for django-allauth.

1. Error Handling:

I encountered a ModuleNotFoundError for django\_js\_asset and took steps to troubleshoot the issue by ensuring the package is installed and correctly listed in INSTALLED\_APPS.

---

<div class="post-metadata">

### Author: ![ido008008](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/ido008008/32/24717_2.png) [@ido008008](https://forum.djangoproject.com/u/ido008008)
#### Post date: [October 21, 2024, 10:13pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/4 "2024-10-21T22:13:51Z")

</div>

hi, is what i wrote you is enough information for you to help me? let me know what i can do, cause i tried everything chatgpt said and nothing worked…

---

<div class="post-metadata">

### Author: ![KenWhitesell](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/kenwhitesell/32/280_2.png) [@KenWhitesell](https://forum.djangoproject.com/u/KenWhitesell)
#### Post date: [October 21, 2024, 10:16pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/5 "2024-10-21T22:16:47Z")

</div>

Please provide the actual commands issued, not just a description.

Likewise, show the settings and the code.

Likewise, show the complete error message with the traceback.

We can’t diagnose descriptions. We need to see the details.

---

<div class="post-metadata">

### Author: ![ido008008](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/ido008008/32/24717_2.png) [@ido008008](https://forum.djangoproject.com/u/ido008008)
#### Post date: [October 21, 2024, 10:20pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/6 "2024-10-21T22:20:44Z")

</div>

its long, but ill try showing the things that are related to this, let me know if you need anything else and thanks a lot for the help

Commands Issued

1. Environment Setup:

python -m venv myenv

1. Activating the virtual environment (on Windows):

myenv\Scripts\activate

1. Django Installation:

pip install django

1. Project Creation:

django-admin startproject myproject

1. Installing Django Applications: For each third-party application:

pip install django-allauth  
pip install django-axes  
pip install django-ckeditor  
pip install django-cors-headers  
pip install django-filter  
pip install django-js-asset  
pip install django-rest-auth  
pip install django-simple-history  
pip install django-storages  
pip install djangorestframework

1. Checking Installed Packages:

pip list

* * *

settings.py Updates

INSTALLED\_APPS = [  
‘django.contrib.admin’,  
‘django.contrib.auth’,  
‘django.contrib.contenttypes’,  
‘django.contrib.sessions’,  
‘django.contrib.messages’,  
‘django.contrib.staticfiles’,

```
# Third-party apps
'django.contrib.sites',  
'allauth',               
'allauth.account',       
'axes',
'ckeditor',
'corsheaders',
'django_filters',
'django_js_asset',
'django-rest-auth',
'django-simple-history',
'rest_framework',  
'storages',        

```

]

SITE\_ID = 1

* * *

Error Message and Traceback

When trying to run the server using python manage.py runserver, I received the following error:

(myenv) d:\ido\tiplox\myproject\>python manage.py runserver  
Watching for file changes with StatReloader  
Exception in thread django-main-thread:  
Traceback (most recent call last):  
File “d:\ido\tiplox\lib\threading.py”, line 980, in \_bootstrap\_inner  
self.run()  
File “d:\ido\tiplox\lib\threading.py”, line 917, in run  
self.\_target(\*self._args, \*\*self.kwargs)  
File “d:\ido\tiplox\myenv\lib\site-packages\django\utils\autoreload.py”, line 64, in wrapper  
fn(\*args, \*\*kwargs)  
File “d:\ido\tiplox\myenv\lib\site-packages\django\core\management\commands\runserver.py”, line 125, in inner\_run  
autoreload.raise\_last\_exception()  
File “d:\ido\tiplox\myenv\lib\site-packages\django\utils\autoreload.py”, line 87, in raise\_last\_exception  
raise exception[1]  
File "d:\ido\tiplox\myenv\lib\site-packages\django\core\management\_init.py", line 394, in execute  
autoreload.check\_errors(django.setup)()  
File “d:\ido\tiplox\myenv\lib\site-packages\django\utils\autoreload.py”, line 64, in wrapper  
fn(\*args, \*\*kwargs)  
File "d:\ido\tiplox\myenv\lib\site-packages\django\_init.py", line 24, in setup  
apps.populate(settings.INSTALLED\_APPS)  
File “d:\ido\tiplox\myenv\lib\site-packages\django\apps\registry.py”, line 91, in populate  
app\_config = AppConfig.create(entry)  
File “d:\ido\tiplox\myenv\lib\site-packages\django\apps\config.py”, line 193, in create  
import\_module(entry)  
File "d:\ido\tiplox\lib\importlib\_init_.py", line 127, in import\_module  
return \_bootstrap.\_gcd\_import(name[level:], package, level)  
File “”, line 1030, in \_gcd\_import  
File “”, line 1007, in \_find\_and\_load  
File “”, line 984, in \_find\_and\_load\_unlocked  
ModuleNotFoundError: No module named ‘django\_js\_asset’

thanks, and let me know if you need anything else

---

<div class="post-metadata">

### Author: ![KenWhitesell](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/kenwhitesell/32/280_2.png) [@KenWhitesell](https://forum.djangoproject.com/u/KenWhitesell)
#### Post date: [October 21, 2024, 10:26pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/7 "2024-10-21T22:26:24Z")

</div>

See the docs for [`django-js-asset`](https://github.com/matthiask/django-js-asset/). Not everything you install gets added to `INSTALLED_APPS`, and not everything you install gets added to `INSTALLED_APPS` under the same name. (Module names do _not_ need to match the package names.)

You need to review the docs for all your packages to see how they are supposed to be installed or used within your project.

---

<div class="post-metadata">

### Author: ![ido008008](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/ido008008/32/24717_2.png) [@ido008008](https://forum.djangoproject.com/u/ido008008)
#### Post date: [October 21, 2024, 10:31pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/8 "2024-10-21T22:31:20Z")

</div>

ok thank you, i still mot quite understand, when you say packages do you mean like django-js-asset? or is this a module? also, so what you are saying is that the fix is simply deleting it from the installed app list? and that i need to check about every app i download for django? how and where can i check details about it? also, how can i learn to code better? im using chat gpt for help, is there anything better you reccommened?  
again thank you very much for your help!

---

<div class="post-metadata">

### Author: ![KenWhitesell](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/kenwhitesell/32/280_2.png) [@KenWhitesell](https://forum.djangoproject.com/u/KenWhitesell)
#### Post date: [October 21, 2024, 10:34pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/9 "2024-10-21T22:34:09Z")

</div>

> [@ido008008](#):
>
> im using chat gpt for help, is there anything better you reccommened?

Anything else is better. ChatGPT is a horrible resource.

I suggest you start out with either (or both) the [Official Django Tutorial](https://docs.djangoproject.com/en/4.2/intro/tutorial01/) and the [Django Girls Tutorial](https://tutorial.djangogirls.org/en/).

I also recommend selecting resources from the “Educational” section of the [Awesome Django](https://github.com/wsvincent/awesome-django) page.

---

<div class="post-metadata">

### Author: ![ido008008](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/ido008008/32/24717_2.png) [@ido008008](https://forum.djangoproject.com/u/ido008008)
#### Post date: [October 21, 2024, 10:35pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/10 "2024-10-21T22:35:44Z")

</div>

so do you think the codes it gives me arent good? it saves me a lot of time when chatgpt write the code, do you think its not good? what do you think about github copilot then? is it worth the money?

---

<div class="post-metadata">

### Author: ![ido008008](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/ido008008/32/24717_2.png) [@ido008008](https://forum.djangoproject.com/u/ido008008)
#### Post date: [October 21, 2024, 10:36pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/11 "2024-10-21T22:36:35Z")

</div>

and also about this: I still not quite understand, when you say packages do you mean like django-js-asset? or is this a module? also, so what you are saying is that the fix is simply deleting it from the installed app list? and that i need to check about every app i download for django?

---

<div class="post-metadata">

### Author: ![KenWhitesell](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/kenwhitesell/32/280_2.png) [@KenWhitesell](https://forum.djangoproject.com/u/KenWhitesell)
#### Post date: [October 21, 2024, 10:38pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/12 "2024-10-21T22:38:14Z")

</div>

> [@ido008008](#):
>
> so do you think the codes it gives me arent good?

If that’s what it gave you, then yes, it’s bad.

The issue is that when you’re first trying to learn something, you need to work from trusted and reliable sources. You don’t know enough yet to know when those tools are giving you misleading or incorrect information - and that’s what makes them dangerous for beginners.

---

<div class="post-metadata">

### Author: ![KenWhitesell](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/kenwhitesell/32/280_2.png) [@KenWhitesell](https://forum.djangoproject.com/u/KenWhitesell)
#### Post date: [October 21, 2024, 10:40pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/13 "2024-10-21T22:40:27Z")

</div>

My suggest is start at the beginning. Go back to the tutorials I identified and work your way through them. Then find other resources from that page I gave you.

---

<div class="post-metadata">

### Author: ![ido008008](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/ido008008/32/24717_2.png) [@ido008008](https://forum.djangoproject.com/u/ido008008)
#### Post date: [October 21, 2024, 10:41pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/14 "2024-10-21T22:41:15Z")

</div>

ok thank you i will try to learn with the tutorials you talked about, with a project like that, im building a crm system, how hard is it? can i do it with django as a beginner?

---

<div class="post-metadata">

### Author: ![ido008008](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/ido008008/32/24717_2.png) [@ido008008](https://forum.djangoproject.com/u/ido008008)
#### Post date: [October 21, 2024, 10:42pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/15 "2024-10-21T22:42:03Z")

</div>

last thing, about my problem, all i need to do to fix it is to delete it from the list of installed apps?

---

<div class="post-metadata">

### Author: ![KenWhitesell](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/kenwhitesell/32/280_2.png) [@KenWhitesell](https://forum.djangoproject.com/u/KenWhitesell)
#### Post date: [October 21, 2024, 10:43pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/16 "2024-10-21T22:43:38Z")

</div>

Given enough time and effort I’m sure you’ll be able to build anything you want to build.

Regarding your current issue, there are multiple problems there. The one you’ve highlighted was just the first to be identified.

---

<div class="post-metadata">

### Author: ![ido008008](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/ido008008/32/24717_2.png) [@ido008008](https://forum.djangoproject.com/u/ido008008)
#### Post date: [October 21, 2024, 10:46pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/18 "2024-10-21T22:46:33Z")

</div>

can you help me with fixing the issues? or at least give me leads about the mistakes and how can i start fixing them?

---

<div class="post-metadata">

### Author: ![KenWhitesell](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/kenwhitesell/32/280_2.png) [@KenWhitesell](https://forum.djangoproject.com/u/KenWhitesell)
#### Post date: [October 21, 2024, 10:47pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/19 "2024-10-21T22:47:13Z")

</div>

I did - see my previous response at [django apps/modules not being found - #7 by KenWhitesell](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/7)

---

<div class="post-metadata">

### Author: ![ido008008](https://sea2.discourse-cdn.com/flex026/user_avatar/forum.djangoproject.com/ido008008/32/24717_2.png) [@ido008008](https://forum.djangoproject.com/u/ido008008)
#### Post date: [October 21, 2024, 10:52pm UTC](https://forum.djangoproject.com/t/django-apps-modules-not-being-found/35847/21 "2024-10-21T22:52:21Z")

</div>

yea i didnt understand exactly what it means, honestly im not sure even what is the difference between a module and a packege. also how can i find the docs for each app or package?
