Anaconda 新环境安装 jupyter notebook
1. 安装ipykernel
为当前的虚拟环境安装ipykernel。
conda install ipykernel
2. 生成ipykernel的配置文件
python -m ipykernel install —-name tensorflow_env
3. 查看已有的kernel
jupyter kernelspec list
遇到的坑
ImportError: cannot import name 'secure_write'
解决办法
pip install --upgrade jupyter_client
AttributeError:type object IOLoop has no attribute initialized
解决办法:
1.首先pip list 查看自己的tornado版本;
2.然后pip unistall tornado
3.pip list 再次确认是否卸载成功(conda uninstall 我是没卸载成功,可能自己当时下载的时候就是脑子有病 下载的不是pypi的)
4.强烈建议安装 pip install tornado==4.4.3 (4.5版本会报一个错:jupyterRuntimeError: No supported color terminal library)
5.关闭重新在端输入jupyter notebook 成功进入(如果安装4.4.3出现setuptools没有先下载这个就ok)