Changes between Initial Version and Version 1 of Ticket #28376


Ignore:
Timestamp:
Jul 7, 2017, 8:15:28 PM (7 years ago)
Author:
Tim Graham
Comment:

Most likely this isn't a bug in Django. A past django-users thread suggests it's a Python issue. You're better off getting help there. Perhaps somehow an older versions of sqlite3 is being used? Did you tweak the DATABASES setting? For what it's worth, here are versions on my Python 3.5 install:

>>> import sqlite3
>>> sqlite3.version_info
(2, 6, 0)
>>> sqlite3.sqlite_version_info
(3, 11, 0)

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28376

    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #28376 – Description

    initial v1  
    11When i am following the django tutorial with django 1.11.2 and Python 3.6.1 i see the following error. I am using sqlite3 backend.
    2 
    3 
     2{{{
    43Performing system checks...
    54
     
    5150    conn = Database.connect(**conn_params)
    5251django.db.utils.NotSupportedError: URIs not supported
     52}}}
Back to Top