ipython及各种库的安装

1.安装Python

我用的是windows下的python 3.6版本。

ipython及各种库的安装_第1张图片

特别要注意勾上Add Python 3.6 to PATH,然后点“Install Now”即可完成安装。

2.安装ipython

 
  
  • 1

这条命令会自动安装IPython以及它的各种依赖包

如果我们也想在notebook中或者在Qt console中使用IPython,我们还需要安装Jupyter,如下命令:

pip install jupyter
  • 1

安装jupyter  notebook时出现了这个错误:

Running setup.py install for markupsafe ... error

‘utf-8’ codec can't decode byte 0xb6 in position 33 : invalid start byte

ipython及各种库的安装_第2张图片

ipython及各种库的安装_第3张图片

然后再运行 pip install jupyter 即可解决。

另外我们还可能需要安装一些用到的库:

NumPy高性能多维数组矢量运算库:

pip install numpy
  • 1

Matplotlib绘图以及交互式可视化:

pip install matplotlib
Scipy科学计算库:

pip install scipy
SymPy 是Python的符号计算库:

pip install sympy




你可能感兴趣的:(ipython及各种库的安装)