Mark Harrison
Mark Harrison

Reputation: 304644

Trusting a Jupyter untrusted notebook

I am working in an untrusted notebook. How do I change the notebook's status from "untrusted" to "trusted"? I do not see a "File / Trust" as per the documentation. Instead, I see a "File / Trusted Notebook" which is not selectable.

enter image description here

Upvotes: 1

Views: 10352

Answers (2)

coffee-grinder
coffee-grinder

Reputation: 27610

At the command line, run:

jupyter trust notebook-name.ipynb

Upvotes: 0

fistynuts
fistynuts

Reputation: 386

After loading the untrusted notebook, with File / Trust Notebook. It's not explictly spelled out in the documentation, but if you see an unselectable menu item "Trusted Notebook" it means the current notebook is trusted and no further operations are necessary.

from the Jupyter security docs

Upvotes: 3

Related Questions