Re: ModuleNotFoundError: No module named 'mysite'

2024-04-14 Thread Ahmad Irfan
9.18_2/Frameworks/Python.framework/Versions/3.9/lib/python3.9/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 _f

ModuleNotFoundError: No module named 'mysite'

2024-04-13 Thread hikinthru
ackage, level) File "", line 1030, in _gcd_import File "", line 1007, in _find_and_load File "", line 972, in _find_and_load_unlocked File "", line 228, in _call_with_frames_removed File "", line 1030, in _gcd_import File "

Re: ModuleNotFoundError: No module named 'tutorial.quickstart'

2022-09-03 Thread Lakshyaraj Dash
How ??? The views is inside quickstart folder On Sun, Sep 4, 2022, 00:21 Danish Nagori wrote: > Hello > I think you try this > from tutorial import views > > On Fri, 2 Sep 2022, 12:21 pm Pooja Kumari, > wrote: > >> Hello team, >> please help me with this error. >> >> -- >> You received this mes

Re: ModuleNotFoundError: No module named 'tutorial.quickstart'

2022-09-03 Thread Danish Nagori
Hello I think you try this from tutorial import views On Fri, 2 Sep 2022, 12:21 pm Pooja Kumari, wrote: > Hello team, > please help me with this error. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and

Re: ModuleNotFoundError: No module named 'tutorial.quickstart'

2022-09-03 Thread Swetank Subham Roy
It should be: import .views Or from .views import your_view It should be a relative import On Sat, 3 Sep 2022 at 7:16 PM, Lakshyaraj Dash wrote: > She has views inside tutorials then quickstart. She has named every folder > as tutorial. She needs to rename some folders > > On Sat, 3 Sep, 2022,

Re: ModuleNotFoundError: No module named 'tutorial.quickstart'

2022-09-03 Thread Lakshyaraj Dash
She has views inside tutorials then quickstart. She has named every folder as tutorial. She needs to rename some folders On Sat, 3 Sep, 2022, 18:41 Vj Vijay, wrote: > It should be from tutorial import views > > On Fri, Sep 2, 2022, 12:51 PM Pooja Kumari > wrote: > >> Hello team, >> please help

Re: ModuleNotFoundError: No module named 'tutorial.quickstart'

2022-09-03 Thread Vj Vijay
It should be from tutorial import views On Fri, Sep 2, 2022, 12:51 PM Pooja Kumari wrote: > Hello team, > please help me with this error. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving

Re: ModuleNotFoundError: No module named 'tutorial.quickstart'

2022-09-03 Thread Lakshyaraj Dash
@rahul There no module for tutorial.quickstart in pypi Pip will throw error as not proper configuration was found against that package. On Fri, 2 Sep, 2022, 12:55 rahul sharma, wrote: > Ti install in terminal pip install totorial.quickstart > > > On Fri, Sep 2, 2022, 12:57 rahul sharma wrot

Re: ModuleNotFoundError: No module named 'tutorial.quickstart'

2022-09-03 Thread Lakshyaraj Dash
The main problem is that you have every folder named as tutorial so it's throwing errors. On Fri, 2 Sep, 2022, 12:51 Pooja Kumari, wrote: > Hello team, > please help me with this error. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > T

Re: ModuleNotFoundError: No module named 'tutorial.quickstart'

2022-09-03 Thread Muhammad Juwaini Abdul Rahman
Add 'tutorial' to settings.py > INSTALLED_APPS On Fri, 2 Sept 2022 at 15:21, Pooja Kumari wrote: > Hello team, > please help me with this error. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop re

Re: ModuleNotFoundError: No module named 'tutorial.quickstart'

2022-09-02 Thread Abdulrahman Abbas
Having exactly this kind of problem On Fri, Sep 2, 2022, 08:21 Pooja Kumari wrote: > Hello team, > please help me with this error. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails

Re: ModuleNotFoundError: No module named 'tutorial.quickstart'

2022-09-02 Thread Wazed Khan
Use from . import views Because you are in you app directory Or use from tutorial import views On Fri, Sep 2, 2022, 1:21 PM Pooja Kumari wrote: > Hello team, > please help me with this error. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" grou

Re: ModuleNotFoundError: No module named 'tutorial.quickstart'

2022-09-02 Thread rahul sharma
Ti install in terminal pip install totorial.quickstart On Fri, Sep 2, 2022, 12:57 rahul sharma wrote: > Import module name > > On Fri, Sep 2, 2022, 12:21 Pooja Kumari wrote: > >> Hello team, >> please help me with this error. >> >> -- >> You received this message because you are subscribed to

Re: ModuleNotFoundError: No module named 'tutorial.quickstart'

2022-09-02 Thread rahul sharma
Import module name On Fri, Sep 2, 2022, 12:21 Pooja Kumari wrote: > Hello team, > please help me with this error. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an

Re: ModuleNotFoundError: No module named [project_name]

2021-12-15 Thread Muhammad Juwaini Abdul Rahman
ort > [Wed Dec 15 14:51:59.385893 2021] [wsgi:error] [pid 15535:tid > 140431892707072] [remote 127.0.0.1:44654] File " importlib._bootstrap>", line 991, in _find_and_load > [Wed Dec 15 14:51:59.385896 2021] [wsgi:error] [pid 15535:tid > 140431892707072] [remote 127.0.0.1:44

ModuleNotFoundError: No module named [project_name]

2021-12-15 Thread Kyle Paterson
15535:tid 140431892707072] [remote 127.0.0.1:44654] File "", line 991, in _find_and_load [Wed Dec 15 14:51:59.385896 2021] [wsgi:error] [pid 15535:tid 140431892707072] [remote 127.0.0.1:44654] File "", line 973, in _find_and_load_unlocked [Wed Dec 15 14:51:59.385905 2021]

Re: ModuleNotFoundError: No module named 'tempfile'

2021-10-06 Thread Adeyemi Deji
Oh, I didn't get that talk about tempfile but I do now, thanks. Since installation is the issue, y not delete and reinstall python latest version Virus-free. www.avast.com <

Re: ModuleNotFoundError: No module named 'tempfile'

2021-10-06 Thread Kasper Laudrup
I think you replied to the wrong post here, but anyway: On 06/10/2021 10.57, Adeyemi Deji wrote: First of all, what text editor do you use, If not visual studio code I recommend you get that one and learn how to use it, then u can always set the python interpreter based on your choice. I don'

Re: ModuleNotFoundError: No module named 'tempfile'

2021-10-06 Thread Adeyemi Deji
example the tempfile. This should solve your problem. If not, there are great developers out there that will be willing to help you out. On Tue, Oct 5, 2021 at 10:44 PM Kasper Laudrup wrote: > On 05/10/2021 17.20, Olalekan Alashe wrote: > > Pls ,How can i fixed this error (ModuleNotF

Re: ModuleNotFoundError: No module named 'tempfile'

2021-10-05 Thread Kasper Laudrup
On 05/10/2021 17.20, Olalekan Alashe wrote: Pls ,How can i fixed this error (ModuleNotFoundError: No module named 'tempfile').i wanted to install Django with this command "python -m pip installs Django" .I have python 3.8,3.7.3.9 on my system. The tempfile module i

ModuleNotFoundError: No module named 'tempfile'

2021-10-05 Thread Olalekan Alashe
Pls ,How can i fixed this error (ModuleNotFoundError: No module named 'tempfile').i wanted to install Django with this command "python -m pip installs Django" .I have python 3.8,3.7.3.9 on my system. Thank you. -- You received this message because you are subscribed

Re: ModuleNotFoundError -- Please help :)

2021-04-01 Thread 'Ajay Rathore' via Django users
try this *from reporter.models import Counties* Regards *Ajay Rathore* Python Developer On Thu, Apr 1, 2021 at 4:17 PM Ryan Nowakowski wrote: > Since your models aren't in the migrations python package, I would use an > absolute path in the import statement here rather than the relative path.

Re: ModuleNotFoundError -- Please help :)

2021-04-01 Thread Ryan Nowakowski
Since your models aren't in the migrations python package, I would use an absolute path in the import statement here rather than the relative path. On March 31, 2021 9:50:30 PM CDT, 'Dante Costabile' via Django users wrote: >Hiya Folks. Relatively new to django and quite enjoying it. However

Re: ModuleNotFoundError: No module named 'django'

2020-07-16 Thread Exactly musty
(most recent call last): > File "C:/Users/lenovo/Desktop/Django Projects/telusko/telusko/urls.py", > line 16, in > from django.contrib import admin > > *ModuleNotFoundError: No module named 'django'* > > could someone please help in resolving this

ModuleNotFoundError: No module named 'django'

2020-07-16 Thread harshith kumar pedarla
I'm getting this error Traceback (most recent call last): File "C:/Users/lenovo/Desktop/Django Projects/telusko/telusko/urls.py", line 16, in from django.contrib import admin *ModuleNotFoundError: No module named 'django'* could someone please help in resolving

Re: ModuleNotFoundError:

2020-05-08 Thread Jorge Gimeno
e(entry) > File > "/home/sairi/anaconda3/lib/python3.7/site-packages/django/apps/config.py", > line 123, in create > import_module(entry) > File "/home/sairi/anaconda3/lib/python3.7/importlib/__init__.py", line > 127, in import_module >

ModuleNotFoundError:

2020-05-08 Thread nor sairi
portlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) File "", line 1006, in _gcd_import File "", line 983, in _find_and_load File "", line 965, in _find_and_load_unlocked ModuleNotFoundError: No module n

ModuleNotFoundError: No module named 'picamera'

2020-05-01 Thread strudelsoten4427
my camera-script to views.py, i get the error message " ModuleNotFoundError: No module named 'picamera'". Does anyone know why? All the other modules i'm using works fine both in and outside of Django. Importing my own modules also works fine. I'm certain

ModuleNotFoundError: No module named 'apidjangowithjwt.emailservice'

2020-04-02 Thread Kumar Sanu
https://stackoverflow.com/questions/60870963/modulenotfounderror-no-module-named-apidjangowithjwt-emailservice Attached is the folder structure of Project. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this grou

wkhtmltopdf on Amazon ElasticBeanstalk - ModuleNotFoundError: No module named 'main'

2020-02-21 Thread Abdulrasheed Ibrahim
Hello everyone, I need a hand a here. I have an app that uses wkhtmltopdf for generating pdf files, it works perfectly on my development environment. I now deployed the project on amazon eb and it doesn't work, below is the stacktrace: Traceback (most recent call last): File "/usr/lib64/python

Re: ModuleNotFoundError: No module named 'datetime'

2020-01-09 Thread bhushan Gupta
Hello Kasper, thanks for following up. I installed Datetime module using pip. The module is there but still the same error. Looks like a setup error. Here is the pip output: asgiref==3.2.3 DateTime==4.3 Django==3.0.1 pytz==2019.3 pywin32==227 sqlparse==0.3.0 virtualenv==16.7.8 zope.interface==4.7.

Re: ModuleNotFoundError: No module named 'datetime'

2020-01-06 Thread Mohamed A
Can you please check whether the python interpreter inside the virtual environment is python 2 or python 3 ? In order to do so, you need to goto to the virtualenv folder, activate cargo env, and then check "python -V" On Mon, Jan 6, 2020 at 7:10 PM Kasper Laudrup wrote: > Hi Bhushan, > > On 06/0

Re: ModuleNotFoundError: No module named 'datetime'

2020-01-06 Thread Kasper Laudrup
Hi Bhushan, On 06/01/2020 18.20, Bhushan Gupta wrote: Recreated virtual environment – no change. Inside your virtual environment, what's the output of: # pip freeze ? Kind regards, Kasper Laudrup -- You received this message because you are subscribed to the Google Groups "Django users"

RE: ModuleNotFoundError: No module named 'datetime'

2020-01-06 Thread Bhushan Gupta
: django-users@googlegroups.com Subject: Re: ModuleNotFoundError: No module named 'datetime' How about deleting your virtualenv and recreating a new one. It may be located here ::: C:\Users\\.virtualenvs\cargo When reactivated, could you please provide as with the results of "ec

Re: ModuleNotFoundError: No module named 'datetime'

2020-01-03 Thread Mohamed A
C:\Users\GUPTAC~1\Envs\cargo\Scripts\django-admin.py", line 2, in >> >> from django.core import management >> File >> "c:\users\guptac~1\envs\cargo\lib\site-packages\django\__init__.py", line >> 1, in >> from django.utils.version i

Re: ModuleNotFoundError: No module named 'datetime'

2020-01-03 Thread sanusi ibrahim adekunle
> File > "c:\users\guptac~1\envs\cargo\lib\site-packages\django\__init__.py", line > 1, in > from django.utils.version import get_version > File > "c:\users\guptac~1\envs\cargo\lib\site-packages\django\utils\version.py", > line 1, in > import datetime >

Re: ModuleNotFoundError: No module named 'datetime'

2020-01-03 Thread bhushan Gupta
> from django.utils.version import get_version > File > "c:\users\guptac~1\envs\cargo\lib\site-packages\django\utils\version.py", > line 1, in > import datetime > ModuleNotFoundError: No module named 'datetime' > > I commented out "impo

Re: ModuleNotFoundError: No module named 'datetime'

2020-01-03 Thread Daniel Roseman
from django.utils.version import get_version > File > "c:\users\guptac~1\envs\cargo\lib\site-packages\django\utils\version.py", > line 1, in > import datetime > ModuleNotFoundError: No module named 'datetime' > > I commented out "import datetime&

ModuleNotFoundError: No module named 'datetime'

2020-01-03 Thread bhushan Gupta
le "c:\users\guptac~1\envs\cargo\lib\site-packages\django\__init__.py", line 1, in from django.utils.version import get_version File "c:\users\guptac~1\envs\cargo\lib\site-packages\django\utils\version.py", line 1, in import datetime ModuleNotFoundError: No mo

Re: ModuleNotFoundError: No module named 'mysite.polls'

2019-10-28 Thread Charles Jason Decena
mysite.apps.polls would solve your problem On Sunday, October 27, 2019 at 1:01:09 AM UTC+8, Beto Joaquim wrote: > > hello guys I'm new on Django and I would like to ask your help, I've added > "mysite.polls'' to my SETTINGS > Installed app... but it still sa

Re: ModuleNotFoundError: No module named 'mysite.polls'

2019-10-26 Thread DP Mishra
Can u plz show ur codes as well as ur directory structure. On Sat, 26 Oct, 2019, 10:30 PM Beto Joaquim, wrote: > hello guys I'm new on Django and I would like to ask your help, I've added > "mysite.polls'' to my SETTINGS > Installed app... but it still say

ModuleNotFoundError: No module named 'mysite.polls'

2019-10-26 Thread Beto Joaquim
hello guys I'm new on Django and I would like to ask your help, I've added "mysite.polls'' to my SETTINGS > Installed app... but it still say " ModuleNotFoundError: No module named 'mysite.polls'" -- You received this message because you ar

Re: ModuleNotFoundError: No module named :

2019-09-25 Thread Rahul Roshan
;> On Tue, Sep 24, 2019 at 10:13 AM Deep Sukhwani >>>>> wrote: >>>>> >>>>>> Are you supposed to be using a virtualenv and you don't have that >>>>>> activated? >>>>>> >>>>>> Can you run *p

Re: ModuleNotFoundError: No module named :

2019-09-25 Thread MEGA NATHAN
on't have that >>>>> activated? >>>>> >>>>> Can you run *pip freeze | grep -i django* and share the output? >>>>> >>>>> -- >>>>> Regards >>>>> Deep L Sukhwani >>>>> >>&

Re: ModuleNotFoundError: No module named :

2019-09-24 Thread Abu Yusuf
a virtualenv and you don't have that >>>> activated? >>>> >>>> Can you run *pip freeze | grep -i django* and share the output? >>>> >>>> -- >>>> Regards >>>> Deep L Sukhwani

Re: ModuleNotFoundError: No module named :

2019-09-24 Thread MEGA NATHAN
; Deep L Sukhwani >>> >>> >>> On Tue, 24 Sep 2019 at 09:40, MEGA NATHAN >>> wrote: >>> >>>> Hi. >>>> >>>> >>>> i 'm meganathan from india i was doing django trining , >>>> >>>> And i h

Re: ModuleNotFoundError: No module named :

2019-09-23 Thread Abu Yusuf
> >> -- >> Regards >> Deep L Sukhwani >> >> >> On Tue, 24 Sep 2019 at 09:40, MEGA NATHAN >> wrote: >> >>> Hi. >>> >>> >>> i 'm meganathan from india i was doing django trining , >>> &g

Re: ModuleNotFoundError: No module named :

2019-09-23 Thread Abu Yusuf
> Regards > Deep L Sukhwani > > > On Tue, 24 Sep 2019 at 09:40, MEGA NATHAN > wrote: > >> Hi. >> >> >> i 'm meganathan from india i was doing django trining , >> >> And i have one dout .mo module name found models >> >

Re: ModuleNotFoundError: No module named :

2019-09-23 Thread Deep Sukhwani
ango trining , > > And i have one dout .mo module name found models.... > > *ModuleNotFoundError: No module named 'django.models'* > > > > > > *Regards* > *Meganathan,* > > -- > You received this message because you are subscribed to the Googl

Re: Django River - ModuleNotFoundError: No module named 'river'

2019-09-02 Thread Kean
Hi, Uninstalled django-river with pip3 then installed django-river into my venv, as well as added it to installed apps in settings. I’m still having the same issue, with no module named river found, please can you advise? n.b. please see pip freeze. altgraph==0.10.1 bdist-mpkg==0.4.4 bonjour-

Re: Django River - ModuleNotFoundError: No module named 'river'

2019-09-01 Thread Kean
Hi, Thank you Gill, solution is becoming clearer, should I pip3 un-install django-river as v- was installed outside virtualenv, then reinstall using pip3 install django-river, within my active venv? best, K n.b Is their a rule to follow with installing django packages, On 1 Sep 2019, at 22:3

Re: Django River - ModuleNotFoundError: No module named 'river'

2019-09-01 Thread Gil Obradors
With venv deactivated, your are installing onto system library. If you run django , without venv, you will run with system lib. Not recommended. When you works with venv, you need yo install into this virtal enviorment. How? 1.- activate venv 2- pip install And go! El dg., 1 de set. 2019, 23:

Re: Django River - ModuleNotFoundError: No module named 'river'

2019-09-01 Thread Kean
Hi Gil, Thank you for the response. In the first step, I closed the venv, then installed river, (please see process below) This is when I get the issue of Module not found. please clarify, are you saying solution is to install django-river with venv active and then it will work? would I need to

Re: Django River - ModuleNotFoundError: No module named 'river'

2019-09-01 Thread Gil Obradors
Hi, If you deactivate ( close?) venv, and then you install with pip3, it will be installet to system. If you are using venv, pip3 with venv activated Bests djangos, Missatge de Kean del dia dg., 1 de set. 2019 a les 21:56: > Hi, > > New to Django, but can't seem to get django to run the m

Django River - ModuleNotFoundError: No module named 'river'

2019-09-01 Thread Kean
Hi, New to Django, but can't seem to get django to run the module. The process I followed: Process. 1) Closed venv 2) shell: pip3 install django-river 3) Add 'river' to Installed_apps in settings.py Please can anyone advise if they have seen this issue before and how resolved? Best, Kean

Re: ModuleNotFoundError: No module named 'sample,'

2019-03-08 Thread Ezequiel Bertti
Mar 7, 2019 10:44 AM, wrote: > >> Hi Team >> >> My project name is Sample >> While I am trying to connect database with models.py >> I am finding these type of errors >> ModuleNotFoundError: No module named 'sample,' >> Can anybody help me. &

Re: ModuleNotFoundError: No module named 'sample,'

2019-03-08 Thread abel otugeme
ding these type of errors > ModuleNotFoundError: No module named 'sample,' > Can anybody help me. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send

ModuleNotFoundError: No module named 'sample,'

2019-03-07 Thread lakshmyyreddy
Hi,every body I started working on Django recently I am trying to connect database through models.py But I have getting these type of errors can anybody help me how can I fix those errors and how to connect database for user registrations -- You received this message because you are subscribed

Re: ModuleNotFoundError: No module named 'sample,'

2019-03-07 Thread lakshmyyreddy
s.py >> I am finding these type of errors >> ModuleNotFoundError: No module named 'sample,' >> Can anybody help me. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> To unsubs

Re: ModuleNotFoundError: No module named 'sample,'

2019-03-07 Thread 赖信桃
Did you add `sample` to INSTALLED_APPS? 于2019年3月7日周四 下午5:44写道: > Hi Team > > My project name is Sample > While I am trying to connect database with models.py > I am finding these type of errors > ModuleNotFoundError: No module named 'sample,' > Can anybody help

Re: ModuleNotFoundError: No module named 'sample,'

2019-03-07 Thread Alex Kimeu
nect database with models.py >> I am finding these type of errors >> ModuleNotFoundError: No module named 'sample,' >> Can anybody help me. >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users&quo

Re: ModuleNotFoundError: No module named 'sample,'

2019-03-07 Thread Robin Riis
from .models import Sample Den tors 7 mars 2019 10:44 skrev: > Hi Team > > My project name is Sample > While I am trying to connect database with models.py > I am finding these type of errors > ModuleNotFoundError: No module named 'sample,' > Can anybody help

ModuleNotFoundError: No module named 'sample,'

2019-03-07 Thread lakshmyyreddy
Hi Team My project name is Sample While I am trying to connect database with models.py I am finding these type of errors ModuleNotFoundError: No module named 'sample,' Can anybody help me. -- You received this message because you are subscribed to the Google Groups "Django u

ModuleNotFoundError: No module named 'api'

2019-02-16 Thread senthu nithy
ge, level) File "", line 1006, in _gcd_import File "", line 983, in _find_and_load File "", line 965, in _find_and_load_unlocked ModuleNotFoundError: No module named 'api' K.Senthuja Undergraduate Student (UOJ), https://www.linkedin.com/in/senthuja/

Re: Django doesn't run manage.py: ModuleNotFoundError: No module named 'ProjectName' (clonded Django project))

2018-11-27 Thread Joel Mathew
t-programacion/SoftwareDevelopment/classTime_ve/lib/python3.7/site-packages/django/conf/__init__.py", > line 44, in _setup self._wrapped = Settings(settings_module) File > "/home/marcoadv/Documentos/Mat-programacion/SoftwareDevelopment/classTime_ve/lib/python3.7/site-packages/django/conf/__

Re: Django doesn't run manage.py: ModuleNotFoundError: No module named 'ProjectName' (clonded Django project))

2018-11-27 Thread Daniel M
ve/lib/python3.7/site- packages/django/conf/__init__.py", line 107, in __init__ mod = importlib.import_module(self.SETTINGS_MODULE) File "/home/marcoadv/Documentos/Mat-programacion/SoftwareDevelopment/classTime_ ve/lib/python3.7/importlib/__init__.py", line 127, in import_module

Django doesn't run manage.py: ModuleNotFoundError: No module named 'ProjectName' (clonded Django project))

2018-11-27 Thread Marco Antonio Diaz Valdes
107, in __init__ mod = importlib.import_module(self.SETTINGS_MODULE) File "/home/marcoadv/Documentos/Mat-programacion/SoftwareDevelopment/classTime_ve/lib/python3.7/importlib/__init__.py", line 127, in import_module return _bootstrap._gcd_import(name[level:], package, level) ModuleNotFo

Re: ModuleNotFoundError: No module named 'facebook.urls'

2018-11-21 Thread prinx
eware.SignedRequestMiddleware', > > 'facebook.middleware.AppRequestMiddleware', > > ] > > > > This 2 in MIDDLEWARE_CLASSES > > Then added > > url(r'^accounts/',include('facebook.backends.registration.urls')), > > url(r'^facebook/', include('face

Re: ModuleNotFoundError: No module named 'facebook.urls'

2018-11-21 Thread Jason
you need to add the facebook package in your installed apps -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to

ModuleNotFoundError: No module named 'facebook.urls'

2018-11-20 Thread Tushar Nadkar
'^accounts/',include('facebook.backends.registration.urls')), url(r'^facebook/', include('facebook.urls')), as given in the documentation when I compile it showing ModuleNotFoundError: No module named 'facebook.urls' -- You received this message because you are

ModuleNotFoundError: No module named 'C:\\Program Files (x86)\\Python36-32\\Lib\\site-packages\\Django-1'

2017-08-04 Thread Akash Singh
Hi, I am starting to learn Django. When I installed django for the first time, it was working fine, when i restarted my system it is giving the above mentioned error. I tried editing the *path* environment variable but still it doesn't work. *django-admin.py* file is in *C:\Program Files (x86

Re: Django-oscar ModuleNotFoundError 'apps\\checkout'

2017-07-06 Thread Avraham Serour
lowed all the instructions on django-oscar docs >>> <https://django-oscar.readthedocs.io/en/latest/topics/customisation.html#fork-oscar-app> >>> >>> All the files are created when I run >>> >>> python manage.py oscar_fork_app checkout apps/ >

Re: Django-oscar ModuleNotFoundError 'apps\\checkout'

2017-07-06 Thread Bernard Oosthuizen
ut apps/ >> >> >> Then I add this to my *settings*. >> >> INSTALLED_APPS = INSTALLED_APPS + get_core_apps(['apps.checkout']) >> >> >> But then I get the following error: >> >> *ModuleNotFoundError: No module named 'ap

Re: Django-oscar ModuleNotFoundError 'apps\\checkout'

2017-07-06 Thread Avraham Serour
out apps/ > > > Then I add this to my *settings*. > > INSTALLED_APPS = INSTALLED_APPS + get_core_apps(['apps.checkout']) > > > But then I get the following error: > > *ModuleNotFoundError: No module named 'apps\\checkout'* > > > I don

Django-oscar ModuleNotFoundError 'apps\\checkout'

2017-07-05 Thread Bernard Oosthuizen
rk_app checkout apps/ Then I add this to my *settings*. INSTALLED_APPS = INSTALLED_APPS + get_core_apps(['apps.checkout']) But then I get the following error: *ModuleNotFoundError: No module named 'apps\\checkout'* I don't know why it adds the *double backslash* in

Re: uWSGI ModuleNotFoundError Django 1.11

2017-06-02 Thread F. Nikita Thomas
enable it with > --enable-threads *** > Python main interpreter initialized at 0x175a660 > your server socket listen backlog is limited to 100 connections > your mercy for graceful operations on workers is 60 seconds > mapped 72768 bytes (71 KB) for 1 cores > *** Operational MODE

Re: uWSGI ModuleNotFoundError Django 1.11

2017-06-02 Thread Melvyn Sopacua
On Friday 02 June 2017 12:53:06 F. Nikita Thomas wrote: > Thank you everyone and my apologies for the late reply, a friend > passed. I did as requested and here are the results: > > > [user@echo project]$ which python > /usr/bin/python > [user@echo project]$ python -V > Python 2.7.5 So at this p

Re: uWSGI ModuleNotFoundError Django 1.11

2017-06-02 Thread F. Nikita Thomas
14:21:37) [GCC 4.8.5 > 20150623 (Red Hat 4.8.5-11)] > Set PythonHome to /home/user/env/projectenv/ > *** Python threads support is disabled. You can enable it with > --enable-threads *** > Python main interpreter initialized at 0x175a660 > your server socket listen backlog is l

Re: uWSGI ModuleNotFoundError Django 1.11

2017-06-02 Thread 'Abraham Varricatt' via Django users
:36:23 PM UTC-4, James Schneider wrote: >>> >>> *** Operational MODE: single process *** >>>> Traceback (most recent call last): >>>> File "./project/wsgi.py", line 12, in >>>> from django.core.wsgi import get_wsgi_application >

Re: uWSGI ModuleNotFoundError Django 1.11

2017-06-01 Thread Melvyn Sopacua
On Thursday 01 June 2017 15:03:34 F. Nikita Thomas wrote: > Here's the directory listing for my virtual environment: > (projectenv) [user@echo project]$ ls -al projectenv/bin/ More important is projectenv/lib/site-packages. But the test to do as James pointed out is to test if your virtualenv is

Re: uWSGI ModuleNotFoundError Django 1.11

2017-06-01 Thread F. Nikita Thomas
UTC-4, James Schneider wrote: >> >> *** Operational MODE: single process *** >>> Traceback (most recent call last): >>> File "./project/wsgi.py", line 12, in >>> from django.core.wsgi import get_wsgi_application >>> ModuleNotFoundError

Re: uWSGI ModuleNotFoundError Django 1.11

2017-06-01 Thread F. Nikita Thomas
; from django.core.wsgi import get_wsgi_application >> ModuleNotFoundError: No module named 'django' >> unable to load app 0 (mountpoint='') (callable not found or import error) >> *** no app loaded. going in full dynamic mode *** >> *** uWSGI is running in mult

Re: uWSGI ModuleNotFoundError Django 1.11

2017-06-01 Thread James Schneider
> > *** Operational MODE: single process *** > Traceback (most recent call last): > File "./project/wsgi.py", line 12, in > from django.core.wsgi import get_wsgi_application > ModuleNotFoundError: No module named 'django' > unable to load app 0 (mou

Re: uWSGI ModuleNotFoundError Django 1.11

2017-06-01 Thread F. Nikita Thomas
workers is 60 seconds mapped 72768 bytes (71 KB) for 1 cores *** Operational MODE: single process *** Traceback (most recent call last): File "./project/wsgi.py", line 12, in from django.core.wsgi import get_wsgi_application ModuleNotFoundError: No module named 'django'

Re: uWSGI ModuleNotFoundError Django 1.11

2017-06-01 Thread Melvyn Sopacua
On Thursday 01 June 2017 10:47:05 F. Nikita Thomas wrote: > Hi! > I'm having a problem with configuring uWSGI with Django, when I run > the development server everything 'seems' okay, except that I am > missing styling on the html, and when I test run uWSGI from the > command line I get: ... > ch

uWSGI ModuleNotFoundError Django 1.11

2017-06-01 Thread F. Nikita Thomas
-enable-threads *** Python main interpreter initialized at 0x175a660 your server socket listen backlog is limited to 100 connections your mercy for graceful operations on workers is 60 seconds mapped 72768 bytes (71 KB) for 1 cores *** Operational MODE: single process *** ModuleNotFoundError:

Re: ModuleNotFoundError: No module named 'models'

2017-05-29 Thread m712 - Developer
How do you expect us to understand your problem if you give us no context at all? For all I know this error could be a file system corruption. On May 30, 2017 2:42 AM, jinghui yang wrote:ModuleNotFoundError: No module named 'models'How to fix this error? -- You received this message because yo

Re: ModuleNotFoundError: No module named 'models'

2017-05-29 Thread VC
from django.db import models # Create your models here. class Student(models.Model): fname = models.CharField(max_length=50, null=True, blank=True) def __str__(self): return self.fname please try this On Mon, May 29, 2017 at 7:42 PM, jinghui yang wrote: > ModuleNotFoundError: No module na

Re: ModuleNotFoundError: No module named 'models'

2017-05-29 Thread Dylan Reinhold
Well simple fix is make sure you have a module named models. Without the code no one is going to know what you did wrong. On Mon, May 29, 2017 at 4:42 PM, jinghui yang wrote: > ModuleNotFoundError: No module named 'models' > > How to fix this error? > > -- > You r

ModuleNotFoundError: No module named 'models'

2017-05-29 Thread jinghui yang
ModuleNotFoundError: No module named 'models' How to fix this error? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr