CentOS7安装ipython
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7安装ipython相关的知识,希望对你有一定的参考价值。
CentOS7安装IPython
介绍
IPython 是一个 python 的交互式 shell,比默认的python shell 好用得多,支持变
量自动补全,自动缩进,支持 bash shell 命令,内置了许多很有用的功能和函数。
IPython 是基于BSD 开源的。
IPython 为交互式计算提供了一个丰富的架构,包含:
1、强大的交互式 shell
2、Jupyter 内核
3、交互式的数据可视化工具
4、灵活、可嵌入的解释器
5、易于使用,高性能的并行计算工具
安装IPython
一、pip安装IPython
1、首先检查linux有没有安装python-pip包。
[[email protected]]# yum -y install python-pip
如果出现有 "No package python-pip available" , "Error:Nothing to do",
说明linux没有安装python-pip包。
2、没有python-pip包就执行命令
[[email protected]]# yum -y install epel-release #(安装Linux的epel的yum源)。
3、再次对 python-pip 进行安装。
[[email protected]]# yum -y install python-pip
4、对安装好的pip进行升级
[[email protected]]# pip install --upgrade pip
5、对IPython进行安装
[[email protected]]#pip install ipython。
二、压缩包安装IPython
1、下载ipython安装包
1)先切换到此路径下:
cd /usr/local/scr
2)使用wget命令进行下载:
wget https://pypi.python.org/packages/79/63/b671fc2bf0051739e87a7478a207bbeb45
cfae3c328d38ccdd063d9e0074/ipython-6.1.0.tar.gz#md5=1e15e1ce3f3f722da6935d7ac0e51346
2、安装ipython
1)解压下载好的安装包。
[[email protected]]# tar xf ipython-6.1.0.tar.gz
2)切换到此路径下。
[[email protected] src]# cd ipython-6.1.0
3)安装IPytion。
[[email protected] ipython-6.1.0]# python3 setup.py install
三、在安装过程中遇到的BUG,可以使用以下方法解决。
Setup script exited with error: command ‘gcc‘ failed with exit status 1
出现bug原因:由于没有正确安装Python开发环境导致。
系统环境是Centos
yum install python-devel
yum install libevent-devel
easy_install gevent
或者
pip install gevent
把环境更新下
sudo yum install groupinstall ‘development tools‘
以上是关于CentOS7安装ipython的主要内容,如果未能解决你的问题,请参考以下文章