0

I am trying to run a script which imports all the packages required for a code in visual studio code (there is nothing else in their at the moment apart from the import statements) all packages are installed on the environment being used. However running just the statement

entered code

It returns the error message visual studio output

I have tried uninstalling and reinstalling all packages, changing to a different environment and creating a whole new azure function.

Any help would be greatly appreciated.

Peter Pan
  • 23,476
  • 4
  • 25
  • 43
slh23
  • 1

1 Answers1

0

It seems that there is missing a sqlite3 DLL file in your anaconda path C:\Users\954198\AppData\Local\Continuum\Anaconda3\DLLs.

Meanwhile, there is an existing SO thread Unable to import sqlite3 using Anaconda Python which got the same issue with yours, please follow the answer of most voted up to add the lack sqlite dll file to fix it.

I'm afraid that your conda environment or your python environment may be broken, sqlite3 is a default package pre-installed in Python.

Peter Pan
  • 23,476
  • 4
  • 25
  • 43