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

冷暖自知 提交于 2019-12-02 04:29:19

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.)

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.
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!