当前位置:   article > 正文

Vscode远程服务器虚拟环境使用jupyter暨Jupyter远程访问_vscode远程jupyter

vscode远程jupyter

一、首先关于Jupyter的那些插件是一定要安装的(当然包括Python)

我的就这些,也不知道啥时候装的,可能有的没用吧

二、安装相应的库

当然首先得激活相应的需要的环境,这里不再赘述

juputer库不能少吧(相信已经安装过了吧)

  1. pip install jupyter
  2. pip install ipykernel

三、添加jupyter 的kernel以及选择相应的环境

python -m ipykernel install --name 虚拟环境名

虚拟环境名用自己喜欢的就好,这时候随便打开一个ipynb文件,点击右上角的Slect Kernel(已经选择过环境的是当前Python版本)

依次点击Select Another Kernel ->Jupyter Kernel,这时候就能看到刚才创建的Kernel了

但是!这个地方我发现偶尔会有问题(当然没问题就没必要往下面折腾远程访问了),浏览器使用似乎更靠谱一些,然而在服务器上没有UI怎么办?

四、Jupyter远程访问

我们可以注意到,默认监听的ip是localhost,是无法映射出去的,需要更改监听IP为0.0.0.0,经过查阅资料,需要先生成配置文件

jupyter notebook --generate-config

配置文件位置会返回的

比如Writing default config to: /home/q/.jupyter/jupyter_notebook_config.py

然后在这个配置文件中写下

  1. c.ServerApp.allow_remote_access = True # 开启远程访问
  2. c.ServerApp.ip = '0.0.0.0' #Jupyter监听的IP

这样就可以通过ip+端口+token的方式在本地访问啦

常见问题

安装库时报错

ERROR: Cannot uninstall '*****'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.

此时在安装指令后加上--ignore-installed 即可,如

pip install jupyter --ignore-installed

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/764823
推荐阅读
相关标签
  

闽ICP备14008679号