gpt4 book ai didi

python - 在AWS EC2中安装Jupyter

转载 作者:太空宇宙 更新时间:2023-11-03 21:17:42 25 4
gpt4 key购买 nike

我一直按照以下步骤在 AWS EC2 中安装 Jupyter: https://chrisalbon.com/aws/basics/run_project_jupyter_on_amazon_ec2/

我给了 8888 作为端口。然后我启动了 jupyter 笔记本:

enter image description here

然后我继续我的实例网址: https://ec2-XX-XX-XX-XXX.eu-west-3.compute.amazonaws.com:8888/

我有一个公共(public)IP,所以我也尝试过https://XX-XX-XX-XXX:8888/

但它不会以两种方式加载任何内容。我确保 8888 端口在我的 EC2 实例上的安全组中获得授权。知道如何深入了解问题所在吗?

[编辑1]:

我按照以下步骤操作:

c = get_config()

# Kernel config
c.IPKernelApp.pylab = 'inline' # if you want plotting support always in your notebook

# Notebook config
c.NotebookApp.certfile = u'/home/ec2-user/Notebooks/certs/Mycert_file.pem' #location of your certificate file
c.NotebookApp.ip = '*'
c.NotebookApp.open_browser = False #so that the ipython notebook does not opens up a browser by default
c.NotebookApp.password = u'sha1:XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' #the encrypted password we generated above
# Set the port to 8888, the port we set up in the AWS EC2 set-up
c.NotebookApp.port = 8888

[编辑2]:

在执行这些步骤之前,我执行了以下操作:

sudo openssl req -x509 -nodes -days 365 -newkey rsa:1024 -keyout Mycert_file.pem -out Mycert_file.pem

现在,为了找到我的 .pem 文件,我执行了以下操作:find/home -name *.pem

我找到了 .pem 文件的位置,即 /home/ec2-user/Notebooks/certs/Mycert_file.pem

[编辑3]:

我还要补充一点,我当前已经在该实例的 8787 端口上运行 RStudio session 。我认为这不会影响我正在尝试安装 Jupyter 的操作),但只是想指出这一点以防万一。

最佳答案

所以我发现了有关配置文件的问题。在教程中它说按esc键来记录配置文件。但这并没有为我保存文件。所以我只是使用 :wq! 它为我保存了它。

但我仍然无法让它发挥作用。因此,根据建议,我使用了 jupyter Notebook --debug这是日志: enter image description here

关于python - 在AWS EC2中安装Jupyter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54557788/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com