Jupyter Notebook – How to Resolve ‘Not Trusted’ Issue

anacondajupyter-notebookpython

I am using Anaconda to work on a Jupyter notebook which displays "Not Trusted" (see on screenshot below).

enter image description here

What does it mean? Is it a problem? How can I solve it?

Best Answer

You can try doing

jupyter trust notebook-name.ipynb

as is stated in the docs.

After that, open the notebook as usual with

jupyter notebook notebook-name.ipynb
Related Question