Jupyter on EC2: SSL Error

前端 未结 5 1429
无人共我
无人共我 2021-01-03 06:45

I\'m trying to serve a Jupyter notebook from EC2 but I\'m getting an SSL error. I\'m using this AMI: TensorFlow GPU - @nottombrown (ami-8ed4d0e4). I used a self

5条回答
  •  南笙
    南笙 (楼主)
    2021-01-03 07:32

    Try to add https:// to force web browser to use HTTPS-connection.

    I got:

    [W 08:25:56.148 NotebookApp] SSL Error on 9 ('', 62862): [SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:590)
    

    because Chrome tried to use HTTP connection. When using

    https:// 
    

    it finally works :)

提交回复
热议问题