ipython安装

1,安装

pip install ipython

若安装时出现如下错误

’‘’_scandir.c:14:20: fatal error: Python.h: No such file or directory
#include <Python.h>
^
compilation terminated.
error: command 'gcc' failed with exit status 1

----------------------------------------
Failed building wheel for scandir‘’‘

请安装python-devel

yum install python-devel

2,ipython简介

ipython是一个综合的交互式编程环境,相较于python自带的交互式环境要强大很多。特别是于简单代码的验证,科学计算等领域。其主要功能如下:

a,tab键自动补全。

b,一个基于web的交互式环境,允许多个客户端连接到kernel,它即是Notebook。

c,交互式并行计算。

猜你喜欢

转载自www.cnblogs.com/zhuwen/p/8675807.html