0%

miniconda安装jupyter ipython

通过命令安装ipython。

1
conda install ipython jupyter

通过命令进入ipython研究环境:

1
ipython

测试

1
2
3
4
5
6
In [1]: from math import sqrt

In [2]: sqrt(4)
Out[2]: 2.0

In [3]: exit