jupyter内核错误

1、在dos窗口输入以下命令激活环境:anaconda activate 【py环境名,比如py37】(目的是新家你一个虚拟环境)

2、在虚拟环境py37下安装jupyter notebook,命令:pip install jupyter notebook

3、安装ipykernel,命令:conda install ipykernel

4、将虚拟环境注入jupyter notebook,命令:

python -m ipykernel install --user --name 【环境名称】 --display-name 【在jupyter中显示名字】

如:python -m ipykernel install --user --name py37 --display-name py37(可以和环境名一样,也可以不一样。)

5、运行jupyter notebook,命令:jupyter notebook

你可能感兴趣的:(now,jupyter,ide,python)