- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我的 Jupyter 配置如下:
# encoding=utf-8
c = get_config()
c.IPKernelApp.pylab = 'inline'
c.NotebookApp.certfile = u'/root/.ipython/profile_txz_server/mycert.pem'
c.NotebookApp.client_ca = u'/root/.ipython/profile_txz_server/mycert.pem'
c.NotebookApp.password = u'sha1:4a46aefd018f:170840e2f9af032488....' # txzing_token
c.NotebookApp.ip = '127.0.0.1'
c.NotebookApp.port = 8888
c.NotebookApp.open_browser = False
c.NotebookApp.trust_xheaders = True
我的 Nginx HTTP 配置是这样的:
upstream notebook {
server localhost:8888;
}
server {
listen 80;
server_name xx.xx.com;
rewrite ^/(.*) https://xx.xx.com/$1 permanent;
}
server{
listen 443 ssl;
index index.html;
server_name xx.xx.com;
ssl_certificate /root/.ipython/profile_txz_server/mycert.pem;
ssl_certificate_key /root/.ipython/profile_txz_server/mycert.pem;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
location / {
proxy_pass http://127.0.0.1:8888;
proxy_set_header Host $host;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Origin "";
}
}
最后我尝试访问 url:https://xx.xx.com
Jupyter 得到这样的错误:
SSL Error on 9 ('127.0.0.1', 43378): [SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:749)
我该如何处理这个问题?
最佳答案
我来处理这个问题。我尝试这样做:
# c.NotebookApp.certfile = u'/root/.ipython/profile_txz_server/mycert.pem'
# c.NotebookApp.client_ca = u'/root/.ipython/profile_txz_server/mycert.pem'
关于python - 木星 SSL : WRONG_VERSION_NUMBER,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46790850/
我的 Jupyter 配置如下: # encoding=utf-8 c = get_config() c.IPKernelApp.pylab = 'inline' c.NotebookApp.cert
我的 build.gradle 有: testCompile 'org.junit.jupiter:junit-jupiter-api:5.0.0' 使用 http://junit.org/junit
这个问题在这里已经有了答案: Displaying rotatable 3D plots in IPython or Jupyter Notebook (6 个答案) 关闭 5 年前。 我不确定如何
我已经运行一个特定的 python 脚本有一段时间了。在此之前的几个月里,所有脚本都运行良好(包括在 Jupyter 中)。现在,不知何故,我系统中的 jupyter 开始在代码的一个特定行(下面提到
谷歌确实有很多解决这个问题的方法,但不幸的是,即使在尝试了所有的可能性之后,我还是无法让它工作,所以请耐心等待,看看是否有什么让你印象深刻。 操作系统:MAC 星火:1.6.3 (2.10) Jupy
我经常使用Jupyter的cell magic命令 %%px --targets 3 #Some code 在 3 号簇上运行一些代码。使用 line 魔术命令获得相同结果的语法是什么? 我试过了 %
请参阅随附的屏幕截图: 在 Jupyter Python 中:是否有将单元格的输出复制到剪贴板的快捷方式? (即无需手动选择和 ctrl-c?) 或者是否有一个 python 函数可以代替 print
我的路径中有 2 个 csv 文件。我想在不阅读的情况下连接或合并 2 个文件。这是针对数据加载问题和合并错误(大量数据) my folder/a.csv my folder/b.csv 使用>制作a
我喜欢使用 jupyter notebook 来记录我的物理类(class)的主题,所以我让我的学生使用 CoCalc 和 Markdown 或 Jupyter notebook 来编写他们的实验报告
我正在尝试使用神奇的 %run -d "/home/dev/filename.py" 在 Debug模式下在 Jupyter Notebook 中运行脚本。 我在这样做时收到错误:AttributeE
我尝试对我的 toggleButton 使用 observe wtarget = widgets.ToggleButtons( description='select target',
我在 Jupyter Notebook 中。我使用这些库: from fastai.tabular import add_datepart import pandas as pd df_raw 是一个
我定义了自己的 JUnit 注释: @ParameterizedTest @MethodSource("myorg.qa.ccrtesting.DataProviders#standardDataPr
我正在尝试在全新安装的 Ubuntu 19.04 上使用 Jupyter notebook。我已经完成了通常的安装步骤,但 Jupyter 不起作用。当我尝试打开一个笔记本时,我得到了 500 : I
我最近切换到 VSCode,想知道是否有办法让 VSCode 中的 Jupyter 支持的 Python 交互式窗口像 Spyder 中的控制台一样工作,我只需要选择代码并按 ctrl+enter 发
我是一名优秀的程序员,十分优秀!