Installing Mitosheet in VS Code
Instructions for getting your first Mitosheet open is VS Code or Cursor
Installation
pip install mitosheetGetting Started
import mitosheet
import pandas as pd
df = pd.DataFrame({
'A': [1, 2, 3],
'B': [4, 5, 6]
})
mitosheet.sheet(df)Notes
Last updated
Was this helpful?