IPython 与 jupyter 学习

1.IPython安装:
IPython是一种基于Python的交互式解释器。相较于原生的Python Shell,IPython提供了更为强大的编辑和交互功能,增强的Python Shell。

pip install --user IPython

2.Jupyter搭建

pip install --user jupyter

如果是在python3中,则用如下命令:

pip3 install --user jupyter

3. Jupyter使用:

安装完成后,在命令行中输入:

python -m IPython notebook

猜你喜欢

转载自blog.csdn.net/weixin_43011810/article/details/84343998