Skip to content

CoderSales/Bug-Fix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

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]