Linux下安装IPython配置python开发环境教程
一.IPython简介
IPython 是一个交互式的shell,比默认终端好用,支持自动缩进,并且内置了很多有用的功能和函数。可以在任何操作系统上使用。
二.安装方法
1.pip 在线安装
pip install ipython
pip install “ipython[notebook]”
2.下载安装
可以到GitHub 下载安装包,切换到目录下然后运行下面的脚本
Python setup.py install
三.简单使用
打开Linux终端,在命令行中输入
root@Linux:/# ipython
便会进入ipython 的交互式shell,并会显示 ipython 的一些信息,在In [1]: 便可以输入python的代码
Python 2.7.6 (default, Jun 22 2015, 17:58:13) Type “copyright”, “credits” or “license” for more information. IPython 4.0.0 C An enhanced Interactive Python. ? -> Introduction and overview of IPython's features. %quickref -> Quick reference. help -> Python's own help system. object? -> Details about ‘object', use ‘object??' for extra details. In [1]: (此处输入代码)
比如打印”hello ipython”,输入下列代码
In [1]: print (‘hello ipython') hello ipython In [2]:
到此Linux环境安装IPython配置python开发环境就弄好了,如果要在windows下配置开发环境,需要先安装Anaconda,这是一种安装管理的程序,使用它可以很方便的完成Python 的升级操作,并且自带了很多的Python 库。
更多关于python安装教程的文章请参考《python各版本安装教程》
更多精彩书单,请点击python编程必备书单
以上就是本文的全部内容,希望对大家的学习有所帮助。
相关推荐
liying00 2020-08-17
taxuexunmeixi 2020-07-13
滚滚熊的学习笔记 2020-04-25
JannaShen 2020-04-11
CARBON 2020-02-18
MrNineteen 2020-02-09
liying00 2020-02-09
JannaShen 2020-02-03
taxuexunmeixi 2020-01-29
83206837 2020-01-29
chenxihou 2020-01-28
higheels 2020-01-14
taxuexunmeixi 2019-12-29
liying00 2019-12-15
frostime 2019-11-04
frostime 2019-11-01
JannaShen 2019-10-25
MrNineteen 2019-07-06