Python for Data Analysis
  • Intro
  • Python
    • Basics
    • Variables
    • Data Structure
      • Strings
      • Numbers
      • Lists
    • Functions
  • NumPy
    • Basics
    • Indexing and Slicing
    • Element-wise Operations
    • Math/Statistics Computation
  • Pandas
    • Basics
    • Create a DataFrame
    • Inspect a DataFrame
    • Select in DataFrame
    • Modify a DataFrames
    • Aggregate
  • Matplotlib
    • Basics
  • Jupyter Notebook
  • FAQ
Powered by GitBook
On this page

Was this helpful?

FAQ

PreviousBasics

Last updated 5 years ago

Was this helpful?

Q: How to do spell checking in Jupyter notebook markdown cells?

A: Run the following commands in terminal:

pip3 install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user
jupyter nbextension enable spellchecker/main

reference:

http://qingkaikong.blogspot.com/2018/09/spell-checking-in-jupyter-notebook.html