I have the following error. How to fix the following certificate error (ipython)?

前端 未结 2 1242
孤街浪徒
孤街浪徒 2021-01-24 01:11

I\'m getting the following error when I want to run ipython notebook on my macbook. Does anyone know how to fix this? Could you please help me about it?

ERROR:ro         


        
相关标签:
2条回答
  • 2021-01-24 02:04

    It appears that your browser is attempting to access the notebook without SSL. Make sure to access the site with HTTPS. For example, when you access the notebook, type in https://127.0.0.1:9999 in your browser. (Or whatever the address of the server is.)

    0 讨论(0)
  • 2021-01-24 02:05

    It doesn't recognise the files you're passing it - either:

    1. pass a .pem file (private key) to --NotebookApp.keyfile= and the .crt file (your certificate) to --NotebookApp.certfile=
    2. create a new file by appending your certificate to your key and pass this new file to --certfile.
    0 讨论(0)
提交回复
热议问题