Re: Import [python django module] could not be resolved from source Pylance (reportMissingModuleSource) -- even though Django is installed in my venv

2023-04-29 Thread Michael Starr
Thanks. I already have a venv, to answer the first post, and the second, yes, it says 3.11.2. I think VSCode just has a bug. It doesn't bother me and my app works in all other respects. Thank you for the input. Michael On Friday, April 28, 2023 at 7:11:57 AM UTC-7 ALBERT ASHABA AHEEBWA wrote:

Re: Import [python django module] could not be resolved from source Pylance (reportMissingModuleSource) -- even though Django is installed in my venv

2023-04-29 Thread Michael Starr
And yeah, django is installed in the venv. Michael On Saturday, April 29, 2023 at 10:40:01 AM UTC-7 Michael Starr wrote: > Thanks. I already have a venv, to answer the first post, and the second, > yes, it says 3.11.2. I think VSCode just has a bug. It doesn't bother me > and my app works in al

Re: No module name 'taggit'

2023-04-29 Thread ALBERT ASHABA AHEEBWA
This happened to me once, there was nothing major done to fix it. This is what I did: _Reinstall the package _When you start typing the import, let the editor auto complete on it's own. Best Regards, Albert Ashaba Aheebwa +256 781 435857 On Sun, 30 Apr 2023, 00:47 Awobode Emmanuel, wrote: >

Re: No module name 'taggit'

2023-04-29 Thread Awobode Emmanuel
I re-installed several times and kept getting the same error. On Sat, Apr 29, 2023, 11:02 PM ALBERT ASHABA AHEEBWA < ashabaaheebwaalb...@gmail.com> wrote: > This happened to me once, there was nothing major done to fix it. > > This is what I did: > _Reinstall the package > _When you start typing

Re: No module name 'taggit'

2023-04-29 Thread Bhuvnesh Sharma
Try to re create the virtual env and install all the packages again including taggit. On Sun, Apr 30, 2023, 3:36 AM Awobode Emmanuel wrote: > I re-installed several times and kept getting the same error. > > On Sat, Apr 29, 2023, 11:02 PM ALBERT ASHABA AHEEBWA < > ashabaaheebwaalb...@gmail.com>

Re: No module name 'taggit'

2023-04-29 Thread Awobode Emmanuel
This worked. Thank you very much. On Sat, Apr 29, 2023, 11:09 PM Bhuvnesh Sharma wrote: > Try to re create the virtual env and install all the packages again > including taggit. > > On Sun, Apr 30, 2023, 3:36 AM Awobode Emmanuel < > awobodeemmanue...@gmail.com> wrote: > >> I re-installed several

Form Page URL Not Found

2023-04-29 Thread Michael Starr
This isn't the exact name of the error; I'm sure you all have encountered the bad URL error before. But, it tells me it can't find the pet matching the query (I'm making a pet website), and it checked the urls in the order listed below. I mean, you know, in the order in the urls.py file. Anothe

Re: Form Page URL Not Found

2023-04-29 Thread Michael Starr
To contribute to my own answer, but not to answer the question: I forgot that Django can automatically render HTML forms using the tagging language. >From the Django Docs https://docs.djangoproject.com/en/4.1/topics/forms/() *The template¶