Reputation: 1
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.
Upvotes: 0
Views: 3779
Reputation: 11
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
Upvotes: 1
Reputation: 1
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)
Upvotes: 0