0

I have created the static build of jupyter lite while running seaborn library example code in jupyter lite tool i am getting this error : seaborn module not found.

  • Please clarify your question, describing what you tried, what kernel you use (I guess assume pydide) and edit tags to only include relevant ones (jupyterhub, irkernel and console do not appear relevant). – krassowski Dec 27 '21 at 10:45

2 Answers2

0

First of all import matplotlib library then import seaborn library like, from matplotlib import pyplot as plt import seaborn as sn (plt and sn is like rename or short name you can write anything like this place)

  • As it’s currently written, your answer is unclear. Please [edit] to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Dec 27 '21 at 07:43
0

Add this at the beginning of your notebook

import piplite
await piplite.install('seaborn')
import matplotlib.pyplot as plt
import seaborn as sns
%matplotlib inline

Sample notebook image