03-安装Jupyter

作者: CoderJay | 来源:发表于2018-04-24 12:25 被阅读0次

安装jupyter前提是需要安装Python,在前两篇文章我已经介绍了如何安装Python,接下来就详细跟大家讲一下如何安装jupyter

两种方式安装jupyter:

一、使用anaconda安装jupyter:

上一节我们介绍了如何安装anaconda,那么恭喜你,你已经安装了Jupyter Notebook。通过以下命令来运行Notebook:

jupyter notebook

二、使用pip命令来安装jupyter:

Python 3安装jupyter:

python3 -m pip install --upgrade pip

python3 -m pip install jupyter

Python 2安装jupyter:

python -m pip install --upgrade pip

python -m pip install jupyter

安装完毕后使用命令运行notebook

jupyter notebook

相关文章

网友评论

    本文标题:03-安装Jupyter

    本文链接:https://www.haomeiwen.com/subject/qpzdlftx.html