[Answered ]-Python/Django: virtualenv not recognizing app

2👍

Apparently the directories structure changes when I enter my virtual environment.

All I needed to do is change…

from apps.flower.views import Index

to

from views import Index

In my flower apps urls.py file.

Leave a comment