Re: SQLite 3.8.3 or later is required (found 3.7.17).

2019-11-05 Thread amul justin
Tq so much bro can u send u r contact number pls im from tamilnadu

On Saturday, July 20, 2019 at 6:32:21 PM UTC+5:30, Desh Deepak wrote:
>
> Sorry for the late reply, 
>
> You can try these commands on your terminal:-
>
> pip uninstall Django
>
> Then
>
> pip install Django 2.0
>
> and try to run the server again.
>
>
> Thanks and regards:-
>  Desh Deepak
>  deshde...@gmail.com 
>  +917011101001
>
> On Fri, 19 Jul 2019, 18:06 anchal agarwal,  > wrote:
>
>> Hello Django users,
>> i am trying to deploy my django on AWS 
>> I am following this 
>> https://medium.com/@charlesthk/deploy-nginx-django-uwsgi-on-aws-ec2-amazon-linux-517a683163c6
>> Everything was going right but when i run python manage.py migrate , it's 
>> giving me this error
>> django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is 
>> required (found 3.7.17).
>> how can i resolve this?
>> Please 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 an 
>> email to django...@googlegroups.com .
>> To post to this group, send email to django...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/CAMT%3DisVCsYAju5agUWxPrpjZ5a-NGc1X0A7U34c4QthnAM0jKA%40mail.gmail.com
>>  
>> <https://groups.google.com/d/msgid/django-users/CAMT%3DisVCsYAju5agUWxPrpjZ5a-NGc1X0A7U34c4QthnAM0jKA%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/172bcb3a-6182-40dc-96b6-327ad365a326%40googlegroups.com.


Re: SQLite 3.8.3 or later is required (found 3.7.17).

2019-07-20 Thread Desh Deepak
Sorry for the late reply,

You can try these commands on your terminal:-

pip uninstall Django

Then

pip install Django 2.0

and try to run the server again.


Thanks and regards:-
 Desh Deepak
 deshdeepak...@gmail.com
 +917011101001

On Fri, 19 Jul 2019, 18:06 anchal agarwal, 
wrote:

> Hello Django users,
> i am trying to deploy my django on AWS
> I am following this
> https://medium.com/@charlesthk/deploy-nginx-django-uwsgi-on-aws-ec2-amazon-linux-517a683163c6
> Everything was going right but when i run python manage.py migrate , it's
> giving me this error
> django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is
> required (found 3.7.17).
> how can i resolve this?
> Please 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 an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMT%3DisVCsYAju5agUWxPrpjZ5a-NGc1X0A7U34c4QthnAM0jKA%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAMT%3DisVCsYAju5agUWxPrpjZ5a-NGc1X0A7U34c4QthnAM0jKA%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xj%2BjiMYNPhmE%2BimYDjP20OOzm_W-ftjrOSyFAPz8NCQAg%40mail.gmail.com.


Re: SQLite 3.8.3 or later is required (found 3.7.17).

2019-07-20 Thread Joe Reitman
I had the same problem. To fix it I used Python 3.6 and Django 2.1. 


On Friday, July 19, 2019 at 7:37:06 AM UTC-5, Anchal Agarwal wrote:
>
> Hello Django users,
> i am trying to deploy my django on AWS 
> I am following this 
> https://medium.com/@charlesthk/deploy-nginx-django-uwsgi-on-aws-ec2-amazon-linux-517a683163c6
> Everything was going right but when i run python manage.py migrate , it's 
> giving me this error
> django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is 
> required (found 3.7.17).
> how can i resolve this?
> Please 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 an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/e97746fc-9be2-4cfa-81b7-fe57bb143847%40googlegroups.com.


Re: SQLite 3.8.3 or later is required (found 3.7.17).

2019-07-19 Thread Tal
Or, if you prefer, use a slightly older version of Django that doesn't 
require an sqlite library that's newer than your OS has.

Either that, or if you plan on using a database other than sqlite in 
production, once you modify your settings.py's DATABASES variable to use 
something other than sqlite, you won't have this problem anymore.

On Friday, July 19, 2019 at 2:08:50 PM UTC-6, Tal wrote:
>
> This is a known problem 
> <https://www.google.com/url?q=https%3A%2F%2Fcode.djangoproject.com%2Fticket%2F30313&sa=D&sntz=1&usg=AFQjCNFEZ2GRHkL_bqyMdSDy3JG3hcC3rQ>
>  - 
> at least on CentOS 7. Not sure what OS you're running on AWS - I don't have 
> much experience with AWS. I literally just ran into this on my CentOS 7. I 
> posted a fix for CentOS 7. Maybe it'll help you.
>
>
> On Friday, July 19, 2019 at 1:22:20 PM UTC-6, Jani Tiainen wrote:
>>
>> Hi.
>>
>> Error is simple. Python is using too old version of sqlite. There are few 
>> options to fix that depending what os your system runs on.
>>
>> Though sqlite is not very suitable for production so you may want to use 
>> something better like Postgres.
>>
>>
>> pe 19. heinäk. 2019 klo 22.14 anchal agarwal  
>> kirjoitti:
>>
>>> This is my whole Traceback
>>> Traceback (most recent call last):
>>>   File "manage.py", line 15, in 
>>> execute_from_command_line(sys.argv)
>>>   File 
>>> "/usr/local/lib/python3.7/site-packages/django/core/management/__init__.py",
>>>  
>>> line 381, in execute_from_command_line
>>> utility.execute()
>>>   File 
>>> "/usr/local/lib/python3.7/site-packages/django/core/management/__init__.py",
>>>  
>>> line 357, in execute
>>> django.setup()
>>>   File "/usr/local/lib/python3.7/site-packages/django/__init__.py", line 
>>> 24, in setup
>>> apps.populate(settings.INSTALLED_APPS)
>>>   File "/usr/local/lib/python3.7/site-packages/django/apps/registry.py", 
>>> line 114, in populate
>>> app_config.import_models()
>>>   File "/usr/local/lib/python3.7/site-packages/django/apps/config.py", 
>>> line 211, in import_models
>>> self.models_module = import_module(models_module_name)
>>>   File "/usr/lib64/python3.7/importlib/__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 967, in 
>>> _find_and_load_unlocked
>>>   File "", line 677, in _load_unlocked
>>>   File "", line 728, in exec_module
>>>   File "", line 219, in 
>>> _call_with_frames_removed
>>>   File "/home/ec2-user/wavybeatz/music/models.py", line 4, in 
>>> class Album(models.Model):
>>>   File 
>>> "/usr/local/lib/python3.7/site-packages/django/db/models/base.py", line 
>>> 117, in __new__
>>> new_class.add_to_class('_meta', Options(meta, app_label))
>>>   File 
>>> "/usr/local/lib/python3.7/site-packages/django/db/models/base.py", line 
>>> 321, in add_to_class
>>> value.contribute_to_class(cls, name)
>>>   File 
>>> "/usr/local/lib/python3.7/site-packages/django/db/models/options.py", line 
>>> 204, in contribute_to_class
>>> self.db_table = truncate_name(self.db_table, 
>>> connection.ops.max_name_length())
>>>   File "/usr/local/lib/python3.7/site-packages/django/db/__init__.py", 
>>> line 28, in __getattr__
>>> return getattr(connections[DEFAULT_DB_ALIAS], item)
>>>   File "/usr/local/lib/python3.7/site-packages/django/db/utils.py", line 
>>> 201, in __getitem__
>>> backend = load_backend(db['ENGINE'])
>>>   File "/usr/local/lib/python3.7/site-packages/django/db/utils.py", line 
>>> 110, in load_backend
>>> return import_module('%s.base' % backend_name)
>>>   File "/usr/lib64/python3.7/importlib/__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 967, in 
>>> _find_and_load_unlocked
>&

Re: SQLite 3.8.3 or later is required (found 3.7.17).

2019-07-19 Thread Tal
This is a known problem 
<https://www.google.com/url?q=https%3A%2F%2Fcode.djangoproject.com%2Fticket%2F30313&sa=D&sntz=1&usg=AFQjCNFEZ2GRHkL_bqyMdSDy3JG3hcC3rQ>
 - 
at least on CentOS 7. Not sure what OS you're running on AWS - I don't have 
much experience with AWS. I literally just ran into this on my CentOS 7. I 
posted a fix for CentOS 7. Maybe it'll help you.


On Friday, July 19, 2019 at 1:22:20 PM UTC-6, Jani Tiainen wrote:
>
> Hi.
>
> Error is simple. Python is using too old version of sqlite. There are few 
> options to fix that depending what os your system runs on.
>
> Though sqlite is not very suitable for production so you may want to use 
> something better like Postgres.
>
>
> pe 19. heinäk. 2019 klo 22.14 anchal agarwal  > kirjoitti:
>
>> This is my whole Traceback
>> Traceback (most recent call last):
>>   File "manage.py", line 15, in 
>> execute_from_command_line(sys.argv)
>>   File 
>> "/usr/local/lib/python3.7/site-packages/django/core/management/__init__.py", 
>> line 381, in execute_from_command_line
>> utility.execute()
>>   File 
>> "/usr/local/lib/python3.7/site-packages/django/core/management/__init__.py", 
>> line 357, in execute
>> django.setup()
>>   File "/usr/local/lib/python3.7/site-packages/django/__init__.py", line 
>> 24, in setup
>> apps.populate(settings.INSTALLED_APPS)
>>   File "/usr/local/lib/python3.7/site-packages/django/apps/registry.py", 
>> line 114, in populate
>> app_config.import_models()
>>   File "/usr/local/lib/python3.7/site-packages/django/apps/config.py", 
>> line 211, in import_models
>> self.models_module = import_module(models_module_name)
>>   File "/usr/lib64/python3.7/importlib/__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 967, in 
>> _find_and_load_unlocked
>>   File "", line 677, in _load_unlocked
>>   File "", line 728, in exec_module
>>   File "", line 219, in 
>> _call_with_frames_removed
>>   File "/home/ec2-user/wavybeatz/music/models.py", line 4, in 
>> class Album(models.Model):
>>   File "/usr/local/lib/python3.7/site-packages/django/db/models/base.py", 
>> line 117, in __new__
>> new_class.add_to_class('_meta', Options(meta, app_label))
>>   File "/usr/local/lib/python3.7/site-packages/django/db/models/base.py", 
>> line 321, in add_to_class
>> value.contribute_to_class(cls, name)
>>   File 
>> "/usr/local/lib/python3.7/site-packages/django/db/models/options.py", line 
>> 204, in contribute_to_class
>> self.db_table = truncate_name(self.db_table, 
>> connection.ops.max_name_length())
>>   File "/usr/local/lib/python3.7/site-packages/django/db/__init__.py", 
>> line 28, in __getattr__
>> return getattr(connections[DEFAULT_DB_ALIAS], item)
>>   File "/usr/local/lib/python3.7/site-packages/django/db/utils.py", line 
>> 201, in __getitem__
>> backend = load_backend(db['ENGINE'])
>>   File "/usr/local/lib/python3.7/site-packages/django/db/utils.py", line 
>> 110, in load_backend
>> return import_module('%s.base' % backend_name)
>>   File "/usr/lib64/python3.7/importlib/__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 967, in 
>> _find_and_load_unlocked
>>   File "", line 677, in _load_unlocked
>>   File "", line 728, in exec_module
>>   File "", line 219, in 
>> _call_with_frames_removed
>>   File 
>> "/usr/local/lib/python3.7/site-packages/django/db/backends/sqlite3/base.py", 
>> line 66, in 
>> check_sqlite_version()
>>   File 
>> "/usr/local/lib/python3.7/site-packages/django/db/backends/sqlite3/base.py", 
>> line 63, in check_sqlite_version
>> raise ImproperlyConfigured('SQLite 3.8.3 or later is required (found 
>> %s).' % Database.sqlite_version)
>> django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is 
>> required (found 3.7.17).
>>
>> On Sat, Jul 20, 2019 at 12:29 AM anchal a

Re: SQLite 3.8.3 or later is required (found 3.7.17).

2019-07-19 Thread Jani Tiainen
Hi.

Error is simple. Python is using too old version of sqlite. There are few
options to fix that depending what os your system runs on.

Though sqlite is not very suitable for production so you may want to use
something better like Postgres.


pe 19. heinäk. 2019 klo 22.14 anchal agarwal 
kirjoitti:

> This is my whole Traceback
> Traceback (most recent call last):
>   File "manage.py", line 15, in 
> execute_from_command_line(sys.argv)
>   File
> "/usr/local/lib/python3.7/site-packages/django/core/management/__init__.py",
> line 381, in execute_from_command_line
> utility.execute()
>   File
> "/usr/local/lib/python3.7/site-packages/django/core/management/__init__.py",
> line 357, in execute
> django.setup()
>   File "/usr/local/lib/python3.7/site-packages/django/__init__.py", line
> 24, in setup
> apps.populate(settings.INSTALLED_APPS)
>   File "/usr/local/lib/python3.7/site-packages/django/apps/registry.py",
> line 114, in populate
> app_config.import_models()
>   File "/usr/local/lib/python3.7/site-packages/django/apps/config.py",
> line 211, in import_models
> self.models_module = import_module(models_module_name)
>   File "/usr/lib64/python3.7/importlib/__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 967, in
> _find_and_load_unlocked
>   File "", line 677, in _load_unlocked
>   File "", line 728, in exec_module
>   File "", line 219, in
> _call_with_frames_removed
>   File "/home/ec2-user/wavybeatz/music/models.py", line 4, in 
> class Album(models.Model):
>   File "/usr/local/lib/python3.7/site-packages/django/db/models/base.py",
> line 117, in __new__
> new_class.add_to_class('_meta', Options(meta, app_label))
>   File "/usr/local/lib/python3.7/site-packages/django/db/models/base.py",
> line 321, in add_to_class
> value.contribute_to_class(cls, name)
>   File
> "/usr/local/lib/python3.7/site-packages/django/db/models/options.py", line
> 204, in contribute_to_class
> self.db_table = truncate_name(self.db_table,
> connection.ops.max_name_length())
>   File "/usr/local/lib/python3.7/site-packages/django/db/__init__.py",
> line 28, in __getattr__
> return getattr(connections[DEFAULT_DB_ALIAS], item)
>   File "/usr/local/lib/python3.7/site-packages/django/db/utils.py", line
> 201, in __getitem__
> backend = load_backend(db['ENGINE'])
>   File "/usr/local/lib/python3.7/site-packages/django/db/utils.py", line
> 110, in load_backend
> return import_module('%s.base' % backend_name)
>   File "/usr/lib64/python3.7/importlib/__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 967, in
> _find_and_load_unlocked
>   File "", line 677, in _load_unlocked
>   File "", line 728, in exec_module
>   File "", line 219, in
> _call_with_frames_removed
>   File
> "/usr/local/lib/python3.7/site-packages/django/db/backends/sqlite3/base.py",
> line 66, in 
> check_sqlite_version()
>   File
> "/usr/local/lib/python3.7/site-packages/django/db/backends/sqlite3/base.py",
> line 63, in check_sqlite_version
> raise ImproperlyConfigured('SQLite 3.8.3 or later is required (found
> %s).' % Database.sqlite_version)
> django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is
> required (found 3.7.17).
>
> On Sat, Jul 20, 2019 at 12:29 AM anchal agarwal 
> wrote:
>
>> I used default sqlite as my Database
>> DATABASES = {
>> 'default': {
>> 'ENGINE': 'django.db.backends.sqlite3',
>> 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
>> }
>> }
>> My python version is python3 and Django version is 2.1.5
>>
>> On Fri, Jul 19, 2019 at 7:06 PM Desh Deepak 
>> wrote:
>>
>>> Hi, show me your database connection, also tell me python and Django
>>> version.
>>>
>>>
>>> On Fri, 19 Jul 2019, 18:06 anchal agarwal, 
>>> wrote:
>>>
>>>> Hello Django users,
>>>> i am trying to deploy my django on AWS
>>>> I am following this
>>>> https://medium.com/@charlesthk/deploy-nginx-django-

Re: SQLite 3.8.3 or later is required (found 3.7.17).

2019-07-19 Thread anchal agarwal
This is my whole Traceback
Traceback (most recent call last):
  File "manage.py", line 15, in 
execute_from_command_line(sys.argv)
  File
"/usr/local/lib/python3.7/site-packages/django/core/management/__init__.py",
line 381, in execute_from_command_line
utility.execute()
  File
"/usr/local/lib/python3.7/site-packages/django/core/management/__init__.py",
line 357, in execute
django.setup()
  File "/usr/local/lib/python3.7/site-packages/django/__init__.py", line
24, in setup
apps.populate(settings.INSTALLED_APPS)
  File "/usr/local/lib/python3.7/site-packages/django/apps/registry.py",
line 114, in populate
app_config.import_models()
  File "/usr/local/lib/python3.7/site-packages/django/apps/config.py", line
211, in import_models
self.models_module = import_module(models_module_name)
  File "/usr/lib64/python3.7/importlib/__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 967, in _find_and_load_unlocked
  File "", line 677, in _load_unlocked
  File "", line 728, in exec_module
  File "", line 219, in
_call_with_frames_removed
  File "/home/ec2-user/wavybeatz/music/models.py", line 4, in 
class Album(models.Model):
  File "/usr/local/lib/python3.7/site-packages/django/db/models/base.py",
line 117, in __new__
new_class.add_to_class('_meta', Options(meta, app_label))
  File "/usr/local/lib/python3.7/site-packages/django/db/models/base.py",
line 321, in add_to_class
value.contribute_to_class(cls, name)
  File
"/usr/local/lib/python3.7/site-packages/django/db/models/options.py", line
204, in contribute_to_class
self.db_table = truncate_name(self.db_table,
connection.ops.max_name_length())
  File "/usr/local/lib/python3.7/site-packages/django/db/__init__.py", line
28, in __getattr__
return getattr(connections[DEFAULT_DB_ALIAS], item)
  File "/usr/local/lib/python3.7/site-packages/django/db/utils.py", line
201, in __getitem__
backend = load_backend(db['ENGINE'])
  File "/usr/local/lib/python3.7/site-packages/django/db/utils.py", line
110, in load_backend
return import_module('%s.base' % backend_name)
  File "/usr/lib64/python3.7/importlib/__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 967, in _find_and_load_unlocked
  File "", line 677, in _load_unlocked
  File "", line 728, in exec_module
  File "", line 219, in
_call_with_frames_removed
  File
"/usr/local/lib/python3.7/site-packages/django/db/backends/sqlite3/base.py",
line 66, in 
    check_sqlite_version()
  File
"/usr/local/lib/python3.7/site-packages/django/db/backends/sqlite3/base.py",
line 63, in check_sqlite_version
raise ImproperlyConfigured('SQLite 3.8.3 or later is required (found
%s).' % Database.sqlite_version)
django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is
required (found 3.7.17).

On Sat, Jul 20, 2019 at 12:29 AM anchal agarwal 
wrote:

> I used default sqlite as my Database
> DATABASES = {
> 'default': {
> 'ENGINE': 'django.db.backends.sqlite3',
> 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
> }
> }
> My python version is python3 and Django version is 2.1.5
>
> On Fri, Jul 19, 2019 at 7:06 PM Desh Deepak 
> wrote:
>
>> Hi, show me your database connection, also tell me python and Django
>> version.
>>
>>
>> On Fri, 19 Jul 2019, 18:06 anchal agarwal, 
>> wrote:
>>
>>> Hello Django users,
>>> i am trying to deploy my django on AWS
>>> I am following this
>>> https://medium.com/@charlesthk/deploy-nginx-django-uwsgi-on-aws-ec2-amazon-linux-517a683163c6
>>> Everything was going right but when i run python manage.py migrate ,
>>> it's giving me this error
>>> django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is
>>> required (found 3.7.17).
>>> how can i resolve this?
>>> Please 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
>>> an email to django-users+unsubscr...@googlegroups.com.
>>> To post to this group, send email to django-users@googlegroups.com.
>>> Visit this group at https://groups.googl

Re: SQLite 3.8.3 or later is required (found 3.7.17).

2019-07-19 Thread anchal agarwal
I used default sqlite as my Database
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
My python version is python3 and Django version is 2.1.5

On Fri, Jul 19, 2019 at 7:06 PM Desh Deepak  wrote:

> Hi, show me your database connection, also tell me python and Django
> version.
>
>
> On Fri, 19 Jul 2019, 18:06 anchal agarwal, 
> wrote:
>
>> Hello Django users,
>> i am trying to deploy my django on AWS
>> I am following this
>> https://medium.com/@charlesthk/deploy-nginx-django-uwsgi-on-aws-ec2-amazon-linux-517a683163c6
>> Everything was going right but when i run python manage.py migrate , it's
>> giving me this error
>> django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is
>> required (found 3.7.17).
>> how can i resolve this?
>> Please 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 an
>> email to django-users+unsubscr...@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/CAMT%3DisVCsYAju5agUWxPrpjZ5a-NGc1X0A7U34c4QthnAM0jKA%40mail.gmail.com
>> <https://groups.google.com/d/msgid/django-users/CAMT%3DisVCsYAju5agUWxPrpjZ5a-NGc1X0A7U34c4QthnAM0jKA%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
> --
> 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 this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAJ0m4xiKUd3sOH0mwJtsUKS-mO8w4hok6VmKoS%3DFEbaSJ9XSag%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAJ0m4xiKUd3sOH0mwJtsUKS-mO8w4hok6VmKoS%3DFEbaSJ9XSag%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT%3DisX2o05%2BnyhNayzzL0x1xYK2%2BLz%3DS6k%3DaDiBXB%3DKwkzo8A%40mail.gmail.com.


Re: SQLite 3.8.3 or later is required (found 3.7.17).

2019-07-19 Thread Desh Deepak
Hi, show me your database connection, also tell me python and Django
version.


On Fri, 19 Jul 2019, 18:06 anchal agarwal, 
wrote:

> Hello Django users,
> i am trying to deploy my django on AWS
> I am following this
> https://medium.com/@charlesthk/deploy-nginx-django-uwsgi-on-aws-ec2-amazon-linux-517a683163c6
> Everything was going right but when i run python manage.py migrate , it's
> giving me this error
> django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is
> required (found 3.7.17).
> how can i resolve this?
> Please 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 an
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CAMT%3DisVCsYAju5agUWxPrpjZ5a-NGc1X0A7U34c4QthnAM0jKA%40mail.gmail.com
> <https://groups.google.com/d/msgid/django-users/CAMT%3DisVCsYAju5agUWxPrpjZ5a-NGc1X0A7U34c4QthnAM0jKA%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAJ0m4xiKUd3sOH0mwJtsUKS-mO8w4hok6VmKoS%3DFEbaSJ9XSag%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


SQLite 3.8.3 or later is required (found 3.7.17).

2019-07-19 Thread anchal agarwal
Hello Django users,
i am trying to deploy my django on AWS
I am following this
https://medium.com/@charlesthk/deploy-nginx-django-uwsgi-on-aws-ec2-amazon-linux-517a683163c6
Everything was going right but when i run python manage.py migrate , it's
giving me this error
django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is
required (found 3.7.17).
how can i resolve this?
Please 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 an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMT%3DisVCsYAju5agUWxPrpjZ5a-NGc1X0A7U34c4QthnAM0jKA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.