我已经安装了朱庇特笔记本并在工作。但是,它只有python 2内核。

我尝试用Python3.6版本的python重新安装Anaconda,它运行得很好(除了删除我的所有环境等等),但与木星可用的内核无关。
我尝试过使用pip ( 这问题的解决方案)安装jupyter,但是我得到了错误消息Requirement already satisfied: jupyter in c:\users\username\anaconda2\lib\site-packages。
有什么想法吗?
发布于 2017-11-29 15:00:03
你在用pip3 install jupyter吗
一个更健壮的解决方案是使用类似于pipenv的东西来隔离您的环境。
pip install pipenv
pipenv install --three这将使用python3安装一个虚拟环境。
安装软件包
pipenv install jupyter激活env
pipenv shell启动笔记本
jupyter notebook您现在应该能够看到python3选项了。
https://stackoverflow.com/questions/47555345
复制相似问题