Jupyter-Notebook 删除指定 kernel】的更多相关文章

原来是Python3+C# 查看列表jupyter kernelspec list 删除指定kernel:jupyter kernelspec remove icsharpkernel 删除成功:(刷新一下) 不同编程语言对应Kernel的下载地址:https://github.com/jupyter/jupyter/wiki/Jupyter-kernels 对于C#我推荐使用workbooks:https://github.com/Microsoft/workbooks https://doc…
本文链接:https://blog.csdn.net/weixin_44290661/article/details/1026789071. 安装tensorflow keras tensorflow_federated详细步骤因为tensorflow很多依赖及版本兼容性问题,卸载麻烦,所以我是新建一个conda虚拟环境,专门用来运行tensorflow相关程序,这样tensorflow有问题的话,也不会影响到其他的python环境. 打开Anaconda Prompt,输入以下命令行. 创建名…
前几天帮同学配置 python 和 anaconda 环境,在装 jupyter notebook 时,出了点问题,搞了一天半终于搞好了,也是在 github 里找到了这个问题的解答. 当时显示的是无法连接到python,不知道为什么,帮他们装的notebook居然都是中文,后来发现是 no connection to kernel 具体操作 pip install tornado== 这么一个错误花了一天多..服了.. 很明显,这是版本问题,现在直接 pip install jupyter n…
Jupyter notebook 安装 为了更加方便地写 Python 代码,还需要安装 Jupyter notebook. 利用 pip 安装 Jupyter notebook. 为什么要使用 Jupyter?参考: https://www.zhihu.com/question/37490497 Jupyter notebook: 一个交互式笔记本,支持运行 40 多种编程语言. 利用她来写 Python,代码和运行结果都可以保存下载,十分方便. Open cmd cd E:\Python\P…
安装并启动jupyter 安装 Anaconda 后, 再安装 jupyter pip install jupyter 设置环境 ipython --ipython-dir= # override the default IPYTHONDIR directory, ~/.ipython/ by default ipython profile create foo # create the profile foo ipython profile locate foo # find foo prof…
一.进入虚拟环境 source tf1/bin/activate 二.安装 IPykernel python2版本: pip install ipykernel python3版本: pip3 install ipykernel 三.将 Virtualenv 加入IPykernel中 python2版本: python2 -m ipykernel install --user --name=tf1 python3版本: python3 -m ipykernel install --user --…
一.ubuntu系统下安装完caffe后,安装 jupyter notebook. 在终端中执行,安装指令: sudo pip install jupyter 安装完成后运行 notebook : jupyter notebook 或 ipython notebook 二.ubuntu系统下,使用virtualenv安装完tensorfow后,安装 jupyter notebook. 主要步骤: 进入虚拟环境 source myproject/bin/activate 安装 IPykernel…
naconda修改国内镜像源 国外网络有时太慢,可以通过配置把下载源改为国内的通过 conda config 命令生成配置文件,这里使用清华的镜像: https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ 首先,打开Anaconda Prompt窗口,执行命令:conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/然后,执行命…
关于如何往Jupyter notebook添加可选的kernel 1. Anaconda知识预热 管理虚拟环境 关于如何安装Anaconda,这里就不再一一赘述,安装完Anaconda,接下来我们就可以用Anaconda来创建一个个独立的python环境了. activate activate 能将我们引入Anaconda设定的虚拟环境中, 如果你后面什么参数都不加那么会进入Anaconda自带的base环境, 你可以输入python试试, 这样会进入base环境的python解释器, 如果你把…
最近做Machine Learning作业,要在Jupyter Notebook上用Keras搭建Neural Network.结果连最简单的一层神经网络都运行不了,更奇怪的是我先用iris数据集跑了一遍并没有任何问题,但是用老师给的fashion mnist一运行服务器就提示挂掉重启.更更奇怪的是同样的code在同学的电脑上跑也是一点问题都没有,让我一度以为是我的macbook年代久远配置太低什么的,差点要买新电脑了>_< 今天上课经ML老师几番调试,竟然完美解决了,不愧是CMU大神!(这里…