Asif Khan
Asif Khan

Reputation: 1278

UsageError: Line magic function `%` not found. Jupyter Notebook

I am getting an error on the following line in my Jupyter Notebook

% matplotlib inline

I am using Python version 3.7, ipython version 7.0.1

Upvotes: 70

Views: 128411

Answers (1)

J_H
J_H

Reputation: 20495

Spell it as two words, rather than three:

%matplotlib inline

Upvotes: 125

Related Questions