美文网首页
python学习干货教程(3):ipython

python学习干货教程(3):ipython

作者: 追逐AI奇点 | 来源:发表于2019-05-07 14:21 被阅读0次

    使用交互式 ipython 运行 Python:

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

    此 ipython 中的 i 代表 “交互(interaction)”。

    官方地址:https://ipython.org/install.html

    直接pip安装命令:

    pip install ipython

    Linux 环境还可以使用以下命令直接安装:

    # Ubuntu

    sudo apt-get install ipython

    # Centos

    yum  install ipython

    Linux或windows终端使用输入如下命令:

    ipython

    Linux/Unix系统中脚本式编程:

    #! /usr/bin/env python3

    修改脚本权限,使其有执行权限,命令如下:

    $ chmod +x hello.py

    执行以下命令:

    ./hello,world.py

    输出结果为:

    Hello, World!

    相关文章

      网友评论

          本文标题:python学习干货教程(3):ipython

          本文链接:https://www.haomeiwen.com/subject/jpmeoqtx.html