jupyter notebook运行出现Bad file descriptor (bundled\zeromq\src\epoll.cpp:100)错误,避坑指南
jupyter notebook运行出现Bad file descriptor (bundled\zeromq\src\epoll.cpp:100), 莫慌,下面告诉你方法。 用Anaconda或pycharm运行jupyter noteb...
jupyter notebook运行出现Bad file descriptor (bundled\zeromq\src\epoll.cpp:100), 莫慌,下面告诉你方法。 用Anaconda或pycharm运行jupyter noteb...
问题描述 使用 Jupyter Notebook 或 Jupyter Lab 时,常常需要使用虚拟环境的内核。然而实际启动时可能会出现如下的报错信息,导致无法正常使用内核: Traceback (most recent call last)...
每次我们打开Jupyter Notebook时,在弹出的浏览器界面上是系统默认的文件位置(工作路径),有时候我们想保存写好的Python文件到自己想要的位置时就非常的不方便,那么我们该如何修改Jupyter Notebook默认的工作路径呢...
使用jupyter, 代码自动补全是必备功能。要实现代码自动补全需要三步: 安装插件包 pip install jupyter_contrib_nbextensions 在jupyter中安装插件菜单 jupyter contrib nbe...
想从cmd换成powershell,发现powershell并不支持切换conda的虚拟环境。 解决办法: 在cmd或者powershell中输入 conda init --all 就可以初始化所有的终端,如果只想初始化powershell...
1. 创建python虚拟环境 conda create -n your_env_name python=xx(2.7, 3.6等等) 2. 常用conda指令 1) conda -V: 查看conda版本 2) conda env lis...
建立 1 安装ipykernel: conda install ipykernel 2 为虚拟环境创建kernel文件: conda install -n 环境名称 ipykernel 3 激活conda环境: conda activate...
Anaconda更换清华源命令 conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --add ...