Linux下怎么安装ipython

发布时间:2022-01-21 15:44:21 作者:iii
来源:亿速云 阅读:248

这篇文章主要介绍“Linux下怎么安装ipython”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Linux下怎么安装ipython”文章能帮助大家解决问题。

Linux下怎么安装ipython
ipython是一个python的交互式shell,比默认的python shell好用得多,支持变量自动补全,自动缩进,支持bash shell命令,内置了许多很有用的功能和函数。

一、通过压缩包安装ipython

1、下载IPython安装包

$ wget https://files.pythonhosted.org/packages/82/0a/146b0f0f1ddf13ab8682aed5c5a42250cddf1082e193ec95b50b03b9f791/ipython-7.3.0.tar.gz

2、安装IPython

[root@localhost ~]# tar xf ipython-7.3.0.tar.gz[root@localhost ~]# cd ipython-7.3.0[root@localhost ipython-7.3.0]# pwd/root/ipython-7.3.0
[root@localhost ipython-7.3.0]# python3 setup.py install

#前提已安装python3, #Linux系统安装Python3 见 : http://www.cnblogs.com/chengd/p/7078498.html

3、通过pip安装ipython所有缺失模块,直至ipython运行成功

[root@localhost ipython]# ipythonTraceback (most recent call last):
 File "/usr/local/bin/ipython", line 4, in    from IPython import start_ipython
 File "/usr/local/lib/python3.7/site-packages/IPython/__init__.py", line 54, in    from .core.application import Application
 File "/usr/local/lib/python3.7/site-packages/IPython/core/application.py", line 23, in    from traitlets.config.application import Application, catch_config_error
ModuleNotFoundError: No module named 'traitlets'

#运行ipython是提示缺少’traitlets’模块; #安装提示一步步通过pip安装缺失模块

[root@localhost ipython]# pip install 'traitlets'Collecting traitlets
 Downloading https://files.pythonhosted.org/packages/93/d6/abcb22de61d78e2fc3959c964628a5771e47e7cc60d53e9342e21ed6cc9a/traitlets-4.3.2-py2.py3-none-any.whl (74kB)
   100% |████████████████████████████████| 81kB 100kB/s
Requirement already satisfied (use --upgrade to upgrade): enum34; python_version == "2.7" in /usr/lib/python2.7/site-packages (from traitlets)
Requirement already satisfied (use --upgrade to upgrade): six in /usr/lib/python2.7/site-packages (from traitlets)
Collecting ipython-genutils (from traitlets)
 Downloading https://files.pythonhosted.org/packages/fa/bc/9bd3b5c2b4774d5f33b2d544f1460be9df7df2fe42f352135381c347c69a/ipython_genutils-0.2.0-py2.py3-none-any.whl
Requirement already satisfied (use --upgrade to upgrade): decorator in /usr/lib/python2.7/site-packages (from traitlets)
Installing collected packages: ipython-genutils, traitlets
Successfully installed ipython-genutils-0.2.0 traitlets-4.3.2
You are using pip version 8.1.2, however version 19.0.3 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.

升级pip

[root@localhost ipython]# pip install --upgrade pipCollecting pip
 Downloading https://files.pythonhosted.org/packages/d8/f3/413bab4ff08e1fc4828dfc59996d721917df8e8583ea85385d51125dceff/pip-19.0.3-py2.py3-none-any.whl (1.4MB)
   68% |█████████████████████▉          | 921kB 8.5kB/s eta 0:00:51
   100% |████████████████████████████████| 1.4MB 73kB/s
Installing collected packages: pip
 Found existing installation: pip 8.1.2
   Uninstalling pip-8.1.2:
     Successfully uninstalled pip-8.1.2
Successfully installed pip-19.0.3

二、直接通过pip安装ipython

pip安装地址:https://www.linuxidc.com/Linux/2019-02/157062.htm

[root@localhost pip-9.0.1]# pip install ipython[root@localhost pip-9.0.1]# ipythonipython  ipython3  
[root@localhost pip-9.0.1]# ipython3/usr/local/lib/python3.6/site-packages/IPython/core/history.py:226: UserWarning: IPython History requires SQLite, your history will not be saved
 warn("IPython History requires SQLite, your history will not be saved")
Python 3.6.1 (default, Jun 26 2017, 09:16:04)
Type 'copyright', 'credits' or 'license' for more information
IPython 6.1.0 -- An enhanced Interactive Python. Type '?' for help.
In [1]:#ipython安装成功

关于“Linux下怎么安装ipython”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注亿速云行业资讯频道,小编每天都会为大家更新不同的知识点。

推荐阅读:
  1. linux下使用IPython编程工具
  2. Linux下安装Redis及Linux下php安装Redis扩展

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

ipython linux

上一篇:Python中怎么使用SMTP发送邮件

下一篇:nginx如何配置反向代理

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》