Skip to content

Latest commit

 

History

History
51 lines (43 loc) · 1.21 KB

File metadata and controls

51 lines (43 loc) · 1.21 KB

Bug-Fix

Fixed bugs


Issue

Jupyter Notebook not working [RESOLVED]

Expected Behaviour

Click run for Notebook with 1 cell with print("hi"), and cell outputs hi

Result

dll not found

Solution Summary

  • download dll
  • move to ... ~\Anaconda3\DLLs
  • Create Jupyter notebook

Detailed Solution

Cause

sqlite.dll missing

Method of Discovery

  • Click log on popup aout kernel couldn't find dll
  • Go through OUTPUT which opens
  • Find sqlite

Source

Fix

go to:

site:

heading:

Precompiled Binaries for Windows

open Windows Explorer:

C:\Users\YOURUSER\Anaconda3\DLLs

drag file from extracted folder to Anaconda3\DLLs folder

Test

  • VSCode
  • Ctrl + Shift + P
  • Create Jupyter Notebook
  • Add ``print("hi")`
  • Click Play button Run All

[RESOLVED]