I am trying to call "sqlite db.sqlite" in my django project but i found the error mentiod below

`sqlite : The term 'sqlite' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:1

  • sqlite db.sqlite3
  •   + CategoryInfo          : ObjectNotFound: (sqlite:String) [], CommandNotFoundException
      + FullyQualifiedErrorId : CommandNotFoundException
    ~~~~~~`
    
    

When I try to run this in the cmd it wrok fine the error is in visual studio terminal

I have also installed sqlite viewer

Back to Top