Python开发利器:IPython与AWS使用指南
1. IPython入门
IPython是一个增强型的交互式Python环境,使用 pip 可以轻松安装:
pip install ipython
如果你使用多个虚拟环境,可以选择全局安装IPython,或者在每个虚拟环境中分别安装。要开始使用IPython,只需在终端窗口中输入 ipython ,你会看到类似如下的提示:
$ ipython
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
Type "copyright", "credits" or "license" for more information.
IPython 1.2.1 -- 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]:
此时,你可以像在普通Python shell中一样输入Python命令,例如: <
超级会员免费看
订阅专栏 解锁全文
1412

被折叠的 条评论
为什么被折叠?



